css常见属性

2017-04-26  本文已影响0人  饥人谷_hfz

块级元素和行内元素分别有哪些

块级元素区别和行内元素区别

块级元素 行内元素
可以包含块级和行内元素 包含文字和行内元素
占据一整行的空间 占据自身宽度
可以设置margin padding 行内元素内外边距不生效
width height只对块级元素有效 width、height 对行内元素无效

css 属性继承(后续遇到了边学习继续总结)

css属性继承是指在内部的标签将拥有外部标签的样式性质,继承是一种机制,不仅可以用于某个特定的元素,还可以用于它的后代元素

可继承的属性 不可继承的属性
color border
font(font-size、font-familye、font-weight、line-height) text-decoration
text-align display
text-indent background
text-transform height
word-spacing position
letter-spacing float
list-style min-height、max-height

设置块级元素和行内元素居中

用 CSS 实现一个三角形

http://js.jirengu.com/rilo/13/edit?html,output

单行文本溢出加 ...如何实现?

需要三个属性,white-space:nowrap; // 不折行
overflow:hidden; // 超出部分隐藏
text-overflow:ellipsis;变为...
http://js.jirengu.com/rilo/13/edit?html,output

px, em, rem 有什么区别

font-family

   body{
       font: 12px/1.5 tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',
       sans-serif;
    }

上述代码:设置字体大小为12px,行高是1.5,\5b8b\4f53 是字体对应的unicode 编码,加引号是因为 字体名字有空格,不加引号会被当成两个元素。
代码题:
1、http://js.jirengu.com/caha/1/edit
2、http://js.jirengu.com/paxox/1/edit
3、http://js.jirengu.com/tofad/1/edit
4、http://js.jirengu.com/pahu/1/edit
5、http://js.jirengu.com/sixoz/3/edit

总结任务八中的css属性

上一篇下一篇

猜你喜欢

热点阅读