【代码笔记】Web-CSS-CSS id和Class选择器

时间:2023-03-09 07:11:05
【代码笔记】Web-CSS-CSS id和Class选择器

一,效果图。

【代码笔记】Web-CSS-CSS id和Class选择器

二,代码。

【代码笔记】Web-CSS-CSS id和Class选择器
<!DOCTYPE html>
<html> <head>
<meta charset="utf-8">
<title>CSS id和class选择器</title>
<style>
#para1 {
text-align: center;
color: red;
} .center {
text-align: center;
} p.center {
text-align: right;
}
</style>
</head> <body>
<p id="para1">hello</p>
<p>this paragraph is not affected by the style.</p>
<h1 class="center">标题居中</h1>
<p class="center">段落居中</p>
</body> </html>
【代码笔记】Web-CSS-CSS id和Class选择器

参考资料:《菜鸟教程》