/*1、CSS导入的四种样式
1.标签内的CSS
2.网页内的CSS
3.link引用的CSS
4.import引用的CSS
*/
/*2、CSS的文本属性*/
.one{
font: 12px;
font-family: "宋体";
font-size: 12px;
font-size-adjust: 10px;
font-stretch: 23;
font-style: fengge;
font-variant:
font-weight: bloder;
}
/*3、CSS的背景属性*/
.three{
background: #fff;
background-attachment:
}
/*4.CSS的边框属性*/
/*5.列表属性*/
.five{
list-style: none;
list-style-type: none;
list-style-position: none;
list-style-image: none;
}
/*6.CSS表格属性*/
/*7.块元素和行内元素的相互转换*/
原文:http://www.cnblogs.com/qianjilou/p/6369073.html