搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of attribute selector</title> <style> p[lang|=en] { color: #fff; background: blue; } </style> </head> <body> <p lang="en">The style will apply to this paragraph.</p> <p lang="en-us">The style will also apply to thi1s paragraph.</p> <p lang="us">The style will not apply to this paragraph.</p> </body> </html>
运行结果