body{
width:100px;/*寬度*/
min-width:1000px;/*最小寬度*/
height?:100px;/*高度*/
line-height:100px;/*行高*/
font-family:SimSun,"Microsoft?YaHei";/*字體*/
font-size?:16px;/*字體大小*/
font-style?:italic;/*字體風格*/
font:16px/26px?"微軟雅黑";/*字號/行高? 字體*/
color:#ccc;/*字體顏色*/
border-width:10px;/*四邊邊框粗細*/
border-style:solid;/*四邊邊框的風格*/
border-color:red;/*四邊邊框的顏色*/
border:10px?solid?red;/*border-width,border-style,border-color的簡寫*/
border-top-width:10px;/*上邊框的粗細*/
border-top-style:dashed;/*上邊框的風格*/
border-top-color:red;/*上邊框的顏色*/
border-top:10px?solid?red;/*上面三個簡寫*/
border-radius:2px;/*邊框圓角*/
text-align:center;/*left,center,right,justify?水平方向居中*/
letter-spacing:10px;/*字間距*/
word-spacing:10px;/*單詞之間的間距*/
text-indent:10px;/*首行縮進*/
margin-top:10px;/*上外邊距*/
margin:10px;/*四邊外邊距*/
padding-top:10px;/*上內(nèi)邊距*/
padding?:10px;/*可以設置一,二,三,四種值.內(nèi)邊距*/
float:left;/*right? 左浮動,右浮動*/
clear?:both;/*清除浮動,,清除左浮動或者右浮動*/
position:relative;/*相對定位*/
position:absolute;/*絕對定位*/
position:fixed;/*固定定位*/
z-index:1;/*設置層疊元素的上下位置*/
background-color:#ddd;/*背景顏色*/
background-image:url("");/*背景圖片*/
overflow:hidden;/*溢出部分隱藏*/
visibility:hidden;/*隱藏,占位置*/
display:block;/*設為塊狀元素?塊級元素自帶的屬性*/
display:inline;/*設為行內(nèi)元素*/
display:inline-block;/*非塊狀元素的塊狀盒子*/
display:none;/*隱藏卦方,不占位置*/
opacity:0.5;/*透明度?兼容ie9以上的瀏覽器*/
filter:alpha(opacity=50)/*設置透明度?兼容i6~ie8*/
}