Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 397 Bytes

selector_05.md

File metadata and controls

20 lines (18 loc) · 397 Bytes

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

匹配具有att属性、且值以val结尾的E元素

例:

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p[title$="val"] {font-weight:bold;}
</style>
</head>
<body>
<div style="width:733px; border: 1px solid #666; padding:5px;">
<p title="this is val">匹配具有att属性、且值以val结尾的E元素</p>
</div>
</body>
</html>