CSS element 选择器
实例
选择并设置所有 <p> 元素的样式:
<!DOCTYPE html>
<html>
<head>
<style>
div * {
background-color: yellow;
}
</style>
</head>
<body>
<h2>欢迎来到我的主页</h2>
<div class="intro">
<p id="firstname">我是唐老鸭。</p>
<p id="hometown">我住在 Duckburg。</p>
</div>
<p>我最好的朋友是米老鼠。</p>
</body>
</html>
浏览器支持
选择器 | |||||
---|---|---|---|---|---|
element | Yes | Yes | Yes | Yes | Yes |
定义和用法
element
选择器用于指定元素名称的所有元素。
版本: | CSS2 |
---|