斜体
a{font-style:italic;}
下划线
a{text-decoration:underline;}
decoration装饰
删除线
.oldprice{text-decoration:line-through;}
缩进
p{text-indent:2em;}
行间距
p{line-height:2em;}
排版
div{text-align:center;}
align排列
元素
块状元素、内联元素(行内元素)、内联块状元素
盒子模型
<div> <ul> <ol> <p> <h> <table>这类块级元素都具有盒子模型的特性
元素实际宽度(盒子的宽度)=左边界+左边框+左填充+内容宽度+右填充+右边框+右边界
div{
width:200px; /*内容宽度*/
padding:20px; /*填充*/
border:1px solid red; /*边框*/
margin:10px; /*边界*/
}