CSS
CSS 属性 选择器
下面的例子是把包含标题(title)的所有元素变为蓝色
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> [title] { color: blue; } </style> </head> <body> <h2>Will apply to:</h2> <h1 title="Hello world">Hello world</h1> <a title="mifengjc.com" href="https://www.mifengjc.com/">mifengjc.com</a> <hr> <h2>Will not apply to:</h2> <p>Hello!</p> </body> </html>
运行结果:
点击运行 »