Style every element with a lang attribute value with CSS


Use the CSS :lang selector to style every <p> element with a lang attribute value. You can try to run the following code to implement the :lang selector:

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:lang(fr) {
            background: green;
         }
      </style>
   </head>
   <body>
      <p>This is my country</p>
      <p lang = "fr">C'est mon pays</p>
      <p>French is the language of France</p>
   </body>
</html>

Updated on: 30-Jun-2020

78 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements