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

CSS选择器

时间:2017-01-03 19:01:09      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:class   执行   作用   空格   复合   标签   div   body   bsp   

1.标签选择器

<style  type="text/css">

p    //格式对p标签起作用

{

    样式;

}

</style>

2.class选择器--都是“.”开头

<head>

<style type="text/css">

.main    /*定义样式*/

{

    height:34px;

    width:67px;

    text-align:center;

}

</style>

</head>

<body>

<div class="main">

</div>

</body>

3.ID选择器--以“#”开头

<div  id="样式名">

<head>

<style type="text/css">

#main    /*定义样式*/

{

    height:34px;

    width:67px;

    text-align:center;

}

</style>

</head>

<body>

<div id="main">

</div>

</body>

4.复合选择器

(1)用“,”隔开,表示并列

<style  type="text/css">

p,span  /*标签p,span两者同样的样式*/

{

  样式;

}

</style>

(2)用空格隔开,表示后代

<style  type="text/css">

.main  p  /找到使用“main”的标签,在该标签里的p标签使用该样式/

{

  样式;

}

</style>

(3)筛选“.”

<style  type="text/css">

p.sp  /在标签p中的clss="sp"的标签,执行以下样式/

{

  样式;

}

</style>

 

CSS选择器

标签:class   执行   作用   空格   复合   标签   div   body   bsp   

原文地址:http://www.cnblogs.com/jc535201285/p/6245567.html

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