W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> [title~=flower] { border:5px solid yellow; } </style> </head> <body> <p>title 属性中包含单词 "flower" 的图片会获得黄色边框。</p> <img src="/i/eg_tulip.jpg" title="tulip flower" /> <br /> <img src="/i/shanghai_lupu_bridge.jpg" title="lupu bridge" /> <p><b>注释:</b>对于 IE8 及更早版本的浏览器中的 [attribute~=value],必须声明 <!DOCTYPE>。</p> </body> </html>