设定每个
具有 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>
广告