The [attribute$=value]
selector
selects elements whose attribute
ends with value
.
[attribute$=value] { style properties }
[attribute$=value] |
Yes | 7.0 | Yes | Yes | Yes |
An example showing how to use [attribute$=value]
CSS selector.
<!DOCTYPE html>
<html>
<head>
<style>
div[class$="_red"]
{<!--from w w w . ja v a 2 s. co m-->
background:red;
}
</style>
</head>
<body>
<div class="div_red">div element.</div>
<p class="p_red">a paragraph.</p>
</body>
</html>