#test 选择一个id=test的对象
.test选择类名为test的标签
p.test选择所有p标签下面的test类标签
class and id不要用数字开头,firefox不支持
样式的层叠优先级别:由低到高
- 浏览器缺省设置
- 外部样式表
- 内部样式表(位于 <head> 标签内部)
- 内联样式(在 HTML 元素内部)
body { background-image:url(‘img_tree.png‘); background-repeat:no-repeat; background-position:right top;background-attachment:fixed;}
可以简写为
body {background:#ffffff url(‘img_tree.png‘) no-repeat right top fixed;}
时间: 2024-10-14 04:40:06