CSS简写总结
CSS的简写在节省代码方面虽然没有table布局改为div那么客观,不过也是一个不能忽略的方面。下面总结一下CSS的一些简写方法:
外补丁(margin)的简写:
比如:margin-top:10px;margin-left:20px;margin-right:20px;margin-bottom:10px;
可以写成:margin:10px 20px;
或者:margin:10px 20px 10px 20px;
再或者:margin:10px 20px 10px;
注意:简写后的顺序是“上-左右-下”,“上-右-下-左”,“上下-左右”
内补丁(padding)的简写:同上
颜色的简写:
比如:color:#FFFFFF
可以写成:color:#FFF
或者:color:white
边框的简写:
比如:border-width:1px; border-style:solid; border-color:#FFFFFF;
可以写成:border:1px solid :#FFFFFF;
或者写成:border:1px solid :#FFF;
背景的简写:background-color:#FFFFFF; background-image:url(background.gif); background-repeat:no-repeat; background-attachment:fixed; background-position:0 0;
可以写成:background:#FFF url(background.gif) no-repeat fixed 0 0;
字体的简写:
font-style:normal; font-weight:bold; font-size:12px; line-height:120%; font-family:"宋体","Arial";
a:link {color:#666666; text-decoration:none;}a:visited{color:#666666; text-decoration:none;}a:hover{color:#000099; text-decoration:underline;}a:active{color:#000000; text-decoration:none;}
body{ margin:0 auto; padding:0; border:0; font-size:12px; text-align:center; font-family: "宋体","Arial","Lucida Grande","Lucida Sans Unicode","Verdana","sans-serif";}