首页  >  文章  >  web前端  >  像 CSS 一样选择特定元素

像 CSS 一样选择特定元素

WBOY
WBOY转载
2023-09-10 17:29:07583浏览

像 CSS 一样选择特定元素

要选择元素,请使用元素选择器。您可以尝试运行以下代码来选择 e388a4556c0f65e1904146cc1a846bee 元素:

示例

现场演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            color: blue;
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <h1>Demo Website</h1>
      <h2>Learning</h2>
      <p>Tutorials on web dev, programming, database, networking, etc.</p>
      <p>Every tutorials has lessons with illustrations and figures.</p>
   </body>
</html>

以上是像 CSS 一样选择特定元素的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除