Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

บทบาทของ CSS:lang Selector


ใช้ตัวเลือก CSS :lang เพื่อจัดรูปแบบทุก

องค์ประกอบด้วยค่าแอตทริบิวต์ lang ด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน :lang selector

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:lang(fr) {
            background: greeb;
         }
      </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>