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