d
Amit DhamuSoftware Engineer
 

CSS3 Attribute Selectors

1 minute read 00000 views
// the "begins with" selector
[att^=val]

// the "ends with" selector
[att$=val]

// the "contains" selector
[att*=val]

Credits