HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(cainiaoplay.com)</title> <style>[title~=flower] { border:5px solid yellow; } </style> </head> <body> <p>图片的 title 属性中如果带有 "flower" 单词,则会设置为黄色边框。</p> <img src="klematis.jpg.html" title="klematis flower" width="150" height="113" /> <img src="img_flwr.gif.html" title="flowers" width="224" height="162" /> <img src="landscape.jpg.html" title="landscape" width="160" height="120" /> <p><b>注意:</b>如果 [<i>attribute</i>~=<i>value</i>] 要在 IE8 及其更早版本下起作用, DOCTYPE 是必须声明的。</p> </body> </html>
动行结果