01-24css常用属性

1.文本相关属性
font-size 字体大小
font-family 字体名
font-weight:100-900 文字加粗。也可以写英文加粗 border,bold,normal(加粗属性名)

字体倾斜:font-style:italic /oblique/ 不倾斜normal
内容水平方向对齐方式 text-align:left左/right右/center居中

文字行高 line-heigt:10px 两段文字之间的距离
当行高是标签高度一样的时候,文字在垂直方向居中

文字修饰(线条)underline 下滑线,overline上滑线,line-through删除线
text-decortion:underline 下滑线 none去掉文字修饰
首行缩进。2em,两个空格
text-indent:2em 只对p标签有效
字间距 letter-spacing:1px 每个字之间的间隙
2列表相关属性
样式类型 list-style-type:none去掉,circle(空心圆)square(实心方块)
使用图片作为列表符号 list-style-image:url(img/***)
符号位置 list-style-position:outside外面,inside里面
list-style:none 去掉符号
3.背景相关属性
background-image:url() 背景图片默认平铺
background-repeat:no-repeat 图片不平铺
repeat 平铺,repeat-x或y方向平铺
背景一种颜色,切图一个很小的图,平铺后多张重复排列,就是一张大图
background-position:x y;
x - left/center/right/数值px
y - top/botten/center/数值px
背景缩写
background:图片地址 是否平铺 x y 背景颜色;

你可能感兴趣的:(01-24css常用属性)