<span style="font-size:18px;">
</span>
1.派生选择器
通过依据元素在其位置的上下文关系来定义样式
代码如下:
样式表里
li strong{
color:green;
}
html里代码
<body>
<p><strong>hello</strong></p>
<ul><li><strong>world</strong></li></ul>
</body>
运行结果:
2.id选择器
id选择器可以为标有Id的HTML元素指定特定的样式
id选择器以“#”来定义
可以用作派生类选择器
代码如下:
样式表里
#pid{
color: blue;
}
html里
<body>
<p id=pid>you are beautiful!</p>
</body>
运行结果:
you are beautiful!
3.类选择器
类选择器以一个点显示
class也可以用作派生类选择器
代码如下:
样式表里
.pclass{
color: red;
}
html里
<body>
<p class="pclass">you are beautiful!</p>
</body>
运行结果:
you are beautiful!
4.属性选择器
对带有指定属性的HTML元素设置样式
代码如下:指定属性title
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style type="text/css">
[title]{
color:blue;
}
</style>
</head>
<body>
<p title='i'>属性选择器/p>
</body>
</html>
属性和值选择器:如果属性指定具体的值则必须按照指定具体的值来写
代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style type="text/css">
[title]{
color:blue;
}
[title=a]{
color: red}
</style>
</head>
<body>
<p title='i'>属性选择器</p>
<p title="a">属性和值选择器</p>
</body>
</html>
运行结果:
属性选择器
属性和值选择器