1.链接a
a:link - 普通的、未被访问的链接
a:visited - 用户已访问的链接
a:hover - 鼠标指针位于链接的上方
a:active - 链接被点击的时刻
---------------------------------------------
a:hover 必须位于 a:link 和 a:visited 之后
a:active 必须位于 a:hover 之后
text-decoration:none;去掉超链接下划线
2.列表
去掉列表边上的标志 ul {list-style-type : none(或square)}
设置列表的图像 list-style-image : url(xxx.gif)
3.1表格边框
设置表格边框, border 属性。
比如,为 table、th 以及 td 设置了蓝色边框:
table, th, td
{
border: 1px solid blue;
}
请注意,上例中的表格具有双线条边框。这是由于 table、th 以及 td 元素都有独立的边框。
如果需要把表格显示为单线条边框, border-collapse 属性。
3.2折叠边框
border-collapse 属性设置是否将表格边框折叠为单一边框:
table
{
border-collapse:collapse;
}
table,th, td
{
border: 1px solid black;
}
3.3表格宽度和高度
通过 width 和 height 属性定义表格的宽度和高度。
比如,将表格宽度设置为 100%,同时将 th 元素的高度设置为 50px:
table
{
width:100%;
}
th
{
height:50px;
}
3.4表格文本对齐
text-align 和 vertical-align 属性设置表格中文本的对齐方式。
text-align 属性设置水平对齐方式,比如左对齐、右对齐或者居中:
td
{
text-align:right;
}
vertical-align 属性设置垂直对齐方式,比如顶部对齐、底部对齐或居中对齐:
td
{
height:50px;
vertical-align:bottom;
}
3.5表格内边距
如需控制表格中内容与边框的距离,请为 td 和 th 元素设置 padding 属性:
td
{
padding:15px;
}
3.6表格颜色
设置边框的颜色,以及 th 元素的文本和背景颜色:
th
{
background-color:green;
color:white;
}
参考:w3cschool文档