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

css三种选择器

时间:2017-11-22 22:06:50      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:css   link   color   class   this   head   type   htm   bsp   

1.派生选择器

<html>
<head>
<link href="a1.css" type="text/css" rel="stylesheet">
</head>

<body>
<h1>ayaya</h1>
</body>
</html>

h1{
color:blue;
}

 

2.id选择器

 

<html>
<head>
<link href="a1.css" type="text/css" rel="stylesheet">
</head>

<body>
<p class="pclasss">ayaya</p>
</body>
</html>

#h1id{
color:blue;
}

 

3.类选择器

<html>

<head>

<link href="a1.css" type="text/css" rel="stylesheet">
</head>

<body>
<h1 id="h1id">This is my page</h1>
This is my JSP page

</body>
</html>

.pclasss
{
color:red;
}

css三种选择器

标签:css   link   color   class   this   head   type   htm   bsp   

原文地址:http://www.cnblogs.com/pgone/p/7880816.html

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