链接的4种状态、列表样式、< td>和< th>的区别、盒子模型、边框样式、em

链接的4种状态

a:link{color: #232323;}
a:visited{color: #121212;}
a:hover{color: #aaaaaa;}
a:active{color: #e2e2e2;}


列表样式

ul{
list-style-type:decimal;
}

and

ul li
{
background-image:url("/statics/images/w3c/sqpurple.gif");
background-repeat:no-repeat;
background-position:0px 5px;
padding-left:14px;
}


< td>和< th>的区别
< th>是表单的第一行,会自动加粗字体;


盒子模型
width、padding、border、margin


em是相对长度单位,1em=10px;


边框样式
border-style定义边框的样式;

border-width属性 如果单独使用则不起作用. 要先使用 border-style 属性来设置 borders

你可能感兴趣的:(链接的4种状态、列表样式、< td>和< th>的区别、盒子模型、边框样式、em)