CSS element 选择器


实例

选择并设置所有 <p> 元素的样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div * {
  6. background-color: yellow;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h2>欢迎来到我的主页</h2>
  12. <div class="intro">
  13. <p id="firstname">我是唐老鸭。</p>
  14. <p id="hometown">我住在 Duckburg。</p>
  15. </div>
  16. <p>我最好的朋友是米老鼠。</p>
  17. </body>
  18. </html>

浏览器支持

选择器
elementYesYesYesYesYes

定义和用法

element 选择器用于指定元素名称的所有元素。

版本: CSS2

分类导航