为具有 lang 属性值的每个
元素设置样式,使用 CSS
使用 CSS :lang 选择器来设置每个带有 lang 属性值的 <p> 元素的样式。您可以尝试运行以下代码来实现 :lang 选择器
示例
<!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>
广告