Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 408 Bytes

selector_06.md

File metadata and controls

20 lines (18 loc) · 408 Bytes

属性选择器:E[attr*="value"]

匹配具有att属性、且值中含有val的E元素

例:

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p[title*="val"] {text-decoration:underline;}
</style>
</head>
<body>
<div style="width:733px; border: 1px solid #666; padding:5px;">
<p title="have val word">匹配具有att属性、且值中含有val的E元素</p>
</div>
</body>
</html>