Home > Web Front-end > HTML Tutorial > How to specify that a style only applies to that element's parent element and that element's child elements in HTML?

How to specify that a style only applies to that element's parent element and that element's child elements in HTML?

PHPz
Release: 2023-08-26 08:01:15
forward
1309 people have browsed it

How to specify that a style only applies to that elements parent element and that elements child elements in HTML?

Use the scoped attribute to specify that the style applies only to the parent element and its children -

Example

<!DOCTYPE html>
<html>
   <head>
      <style>
         h2 {
            color:yellow;
         }
      </style>
   </head>
   <body>
      <div>
         <style scoped>
            h2 {
               color:grey;
            }
         </style>
         <h2>Grey Heading</h2>
      </div>
      <h2>Yellow Heading</h2>
   </body>
</html>
Copy after login

The above is the detailed content of How to specify that a style only applies to that element's parent element and that element's child elements in HTML?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template