使用 CSS 选中所有 `lang` 属性值以“en”开头的元素
使用 [attribute|=”value”] 选择器选中指定属性以指定值开头的元素。
你可以尝试运行以下代码来实现 CSS [attribute|=”value”] 选择器,
示例
<!DOCTYPE html> <html> <head> <style> [lang| = en] { border: 5px solid orange; border-radius: 5px; } </style> </head> <body> <p lang = "en">Hello</p> <p lang = "no">Hei</p> </body> </html>
广告