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>