Blogger Information
Blog 30
fans 0
comment 0
visits 22588
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS-id和class
的确
Original
1057 people have browsed it

id选择器

id选择器可以标有特点idHTML元素指定特定的样式,HTML元素以id属性来设置id选择器,CSSid选择器以“#”来定义

实例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>118qq.top</title>
<style type="text/css">
#center{
       text-align:center;
       }
</style>
</head>
<body><
p id="center">这是一个段落</p>
<p>第二段</p>
</body>
</html>

Class选择器

Class选择器用于描述一组元素的样式,class选择器有别于id选择器,class可以在多个元素中使用,class选择器在HTML中以class属性表示,在CSS中,类选择器以一个点“. 号表示。

实例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>118qq.top</title>
<style type="text/css">
.center{
       text-align:center;
       }
 </style>
 </head>
 <body>
 <p class="center">这是一个段落</p>
 <p class="center">第二段</p>
 </body>
 </html>

也可以在指定特定的HTML元素使用class

实例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>118qq.top</title>
<style type="text/css">
p.center{
       text-align:center;
       }
</style>
</head>
<body>
<h1 class="center">这是一个标题</h1>
<p class="center">这是一个段落</p>
</body>
</html>

提示:类名的第一个字符不能使用数字!它在部分浏览器中不起作用

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post