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

html选择器

时间:2014-11-08 18:03:44      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:style   color   sp   on   bs   html   ad   as   htm   

1.标签选择器:针对的是元素。

<html>
<head>
<style type="text/css">
p{font:"宋体"; color:#FF0000}
</style>
</head>
<body>
<p id="p1">我会变颜色</p>
<p id="p2">我会变颜色</p>
<h1>我没有被任何的选择器修饰</h1>
</body>
</html>

如果在P元素下面还有其他的元素你也要修饰,你就可以在style 中的p 后面在写元素。

2.id选择器,注意id选择器是唯一的

id选择器以#开头

<html>
<head>
<style type="text/css">
#p1{font:"宋体"; color:#FF0000}

#p2{font:"宋体"; color:#FF0000}
</style>
</head>
<body>
<p id="p1">我会变颜色</p>
<p id="p2">我会变颜色</p>
<h1>我没有被任何的选择器修饰</h1>
</body>
</html>

3.类选择器:

类选择器以.开头 只要把元素的class="" 就能表现为这种样式了

<html>
<head>
<style type="text/css">

.p1{font:"宋体"; color:#FF0000}
</style>
</head>
<body>
<p class="p1">我会变颜色</p>
<p id="p2">我不会变颜色</p>
<h1>我没有被任何的选择器修饰</h1>
</body>
</html>

 

html选择器

标签:style   color   sp   on   bs   html   ad   as   htm   

原文地址:http://www.cnblogs.com/kobigood/p/4083734.html

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