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

css 选择器

时间:2014-12-17 10:44:55      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   on   div   log   bs   html   

1、标签选择器

p{
font-size: 12px;
background: #900;
color: 090;
}

 

2、ID选择器

  <style>
      #one{
          font-size: 12px;
          background: #900;
          color: 090;
      }
  </style>

<div id="one">Id选择器</div>

 

3、类选择器

 

 .one
      {
          font-size: 26px;
          background: #900;
          color: 090;
      }
<div class="one">类选择器</div>

 

4、通用选择器

*{
          font-size: 26px;
          background: #900;
          color: 090;
      }

通用选择器对网页中所有标签进行定义。还有作用就是:保证页面兼容所有浏览器要对页面左右HTML标签进行重置可以是用他。如果我们想让做出的页面在不同浏览器下显示都一样,就可以是用通用选择器。这样也有不好的地方,因为它会在页面加载时对所有HTML(HTML4.01共89个标签)都加上样式设定。HTML4.01共89个标签我们用到的其实比较少,只需要对需要设置的标签进行设置。如:

 body,p,a,li {font-size: 12px}

 

补充:一个标签可以有多个类选择器,不同值之间用空格隔开。也可将Id和class用于同一个标签中

<div class="one two three">类选择器</div>

<div id="selector" class="one two three">类选择器</div>
 

 

节选自:KwooJan的《2天驾驭DIV+CSS》

css 选择器

标签:style   blog   color   sp   on   div   log   bs   html   

原文地址:http://www.cnblogs.com/tyb1222/p/4168769.html

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