内嵌标签: thead (可选)、 tbody (可选)、td、tr、colgroup 、 caption (可选)
属性:align ,bgcolor ,bordercolor,border ,cellpadding ,cellspacing ,frame ,width ,summary ,rules 。
现在的table的属性基本已经过时,都使用css进行设置table样式。
1.border-collapsecollapse | separate
collapse : border线合并
separate: border线分隔,默认属性
ps: 使用collapse 此属性时, border-spacing 、empty-cells和 border-radius 失效 ,无任何效果。
2.border-spacinghorizontal <length >| vertical <length >
3.vertical-align 设置内容与图片位置
4.table-layout auto | fixed
ps: auto 表格布局自适应宽度
fixed 表格布局固定宽度,文字内容等可能会溢出
5.caption-side 针对于caption标签的css样式设置
6.empty-cells 但单元格内无内容时候,可设置隐藏
参考:
https://www.sitepoint.com/community/t/table-format-using-css-border-issue/36882/3
https://css-tricks.com/almanac/properties/b/border-collapse/
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Table
<!DOCTYPE html><html>
<head>
<style>
[title*="flower"]
{
border:5px solid yellow
}
[title~="tulips"]
{
border:5px solid red
}
</style>
</head>
<body>
<p>title 属性中包含单词 "flower" 的图片会获得黄色边框。</p>
<img src="images/baidu.png" title="tulip flower" />
<br />
<img src="images/baidu.png" title="lupu bridgeflower" /><br>
<img src="images/baidu.png" title="tulips flower" />
<br />
<img src="images/baidu.png" title="luputulips bridgeflower" />
<p><b>注释:</b>对于 IE8 及更早版本的浏览器中的 [attribute~=value],必须声明 <!DOCTYPE>。</p>
</body>
</html>
[attribute~=value],是指属性中必须包含value的单独单词,不能是单词的一分部。而[attribute*=value]是指属性中只要包含value这几个字母就可以,即使value为属性值的一部分字母也可以。
例如:title="luputulips bridgeflower"
可以被[title*="tulips"]选中,但不能被[title~="tulips"]选中。
在CSS中定义鼠标样式的方法为:{cursor: url('路径/*.cur')}
然后看你想把这个鼠标样式定义到哪里就加什么标签。
通篇用,就定义boby{cursor: url('路径/*.cur')}
定义链接就用a{cursor: url('路径/*.cur')}
别的局部地方用就用别的名称,等等,总之和别的样式调用方法是一样的,可以在页面的任意地方指定不同的鼠标样式。