标签:
margin:10px 15px 12px 14px;/*上设置为10px、右设置为15px、下设置为12px、左设置为14px*/
margin:10px 10px 10px 10px;
可缩写为:
margin:10px;
margin:10px 20px 10px 20px;
margin:10px 20px;
margin:10px 20px 30px 20px;
margin:10px 20px 30px;
p{color:#000000;}
p{color:#000;}
p{color: #336699;}
p{color: #369;}
body{
font-style:italic;
font-variant:small-caps;
font-weight:bold;
font-size:12px;
line-height:1.5em;
font-family:"宋体",sans-serif;
}
body{
font:italic small-caps bold 12px/1.5em "宋体",sans-serif;
}
注意:
1、使用这一简写方式你至少要指定 font-size 和 font-family 属性,其他的属性(如 font-weight、font-style、font-varient、line-height)如未指定将自动使用默认值。
2、在缩写时 font-size 与 line-height 中间要加入“/”斜扛。
一般情况下因为对于中文网站,英文还是比较少的,所以下面缩写代码比较常用:
body{
font:12px/1.5em "宋体",sans-serif;
}
标签:
原文地址:http://www.cnblogs.com/echorep/p/5185760.html