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