Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Role of CSS:lang Selector
Use the CSS :lang selector to style every <p> element with a lang attribute value with CSS. You can try to run the following code to implement the :lang selector
Example
<!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> Advertisements
