标签:
#test 选择一个id=test的对象
.test选择类名为test的标签
p.test选择所有p标签下面的test类标签
class and id不要用数字开头,firefox不支持
样式的层叠优先级别:由低到高
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;}
标签:
原文地址:http://www.cnblogs.com/gabrialrx/p/5454636.html