w3c 小总结
程序员文章站
2022-06-08 22:06:08
...
w3c http://www.w3cschool.cn/css_padding.html
下表格边框样式
.table105{ background:#000;}
.table105 td{ background:#F9F5E7; padding:3px}
example:<table width="90%" border="0" cellspacing="1" cellpadding="0" class="table105">
文本内容加下划线:
<p style="text-decoration:underline">....</p>
css选择器的优先级:
直接使用style=“”最高
使用 ID选择器 次之 (同一个页面只能用一次)
使用 类选择器 更小
使用 html选择器 最小
target="_blank"
=>onclick="window.open(this.href);return false;"
下表格边框样式
.table105{ background:#000;}
.table105 td{ background:#F9F5E7; padding:3px}
example:<table width="90%" border="0" cellspacing="1" cellpadding="0" class="table105">
文本内容加下划线:
<p style="text-decoration:underline">....</p>
css选择器的优先级:
直接使用style=“”最高
使用 ID选择器 次之 (同一个页面只能用一次)
使用 类选择器 更小
使用 html选择器 最小
target="_blank"
=>onclick="window.open(this.href);return false;"
上一篇: Java IO流的概念