编程宝库 - 技术改变世界
编程宝库
编程宝库提供了 JS 在线测试工具,可在线测试 JavaScript 代码,你可以在代码编辑器中输入 JavaScript 代码并点击运行查看结果。
源代码
点击运行
<!DOCTYPE html> <html> <head> <style> [title~=flower] { border: 5px solid yellow; } </style> </head> <body> <h1>CSS [attribute~="value"] 选择器</h1> <p>title 属性包含 "flower" 的所有图像会有黄色边框。</p> <img src="/i/photo/klematis.jpg" title="klematis flower" width="150" height="113"> <img src="/i/photo/flower.gif" title="flower" width="224" height="162"> <img src="/i/photo/tree.png" title="tree" width="200" height="358"> </body> </html>
运行结果