Matches the specified suffix of a property value.

Syntax

[attr$=val] { sRules }

Possible values

attr

Either an identifier or a string.

val

Either an identifier or a string.

sRules

String that specifies one or more cascading style sheet property/value pairs.

Remarks

Property selectors are enabled only in standards-compliant mode (strict !DOCTYPE).

Attributes are case-sensitive.

Example

The following style rule selects any property whose value ends with "n":

 Copy Code
<style>
    .test       {display: none;}
    [attr$="n"] {display: block;}
</style>

<div class="test" attr="Green">Test for [$=] (Suffix) succeeded.</div>

Standards information

See also