码迷,mamicode.com
首页 > Web开发 > 详细

css初学备忘

时间:2016-05-03 14:29:06      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

#test 选择一个id=test的对象

.test选择类名为test的标签

p.test选择所有p标签下面的test类标签

class and id不要用数字开头,firefox不支持

 

样式的层叠优先级别:由低到高

  1. 浏览器缺省设置
  2. 外部样式表
  3. 内部样式表(位于 <head> 标签内部)
  4. 内联样式(在 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;}

  

css初学备忘

标签:

原文地址:http://www.cnblogs.com/gabrialrx/p/5454636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!