CSS element.class 属性 详解
css3基础 2023-07-22 12:38:58小码哥的IT人生shichen
CSS element.class 属性
实例
选择并设置类名为 "intro" 的 <p> 元素的样式:
p.intro {
background-color: yellow;
}
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
p.intro {
background-color: yellow;
}
</style>
</head>
<body>
<h1>欢迎来到我的主页</h1>
<div class="intro">
<p>我叫唐纳德。</p>
<p>我住在达克堡。</p>
</div>
<p>我最好的朋友是米奇。</p>
<p class="intro">我最好的朋友是米奇。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
element.class 选择器用于选取带有指定类的指定元素。
版本: | CSS1 |
---|
浏览器支持
选择器 | |||||
---|---|---|---|---|---|
element.class | Yes | Yes | Yes | Yes | Yes |
CSS 语法
element.class {
css declarations;
}