this post was submitted on 13 Jun 2023
2 points (100.0% liked)

Frontend Web Development

296 readers
1 users here now

Community to discuss stuff all things related to frontend web development. (sharing resources, discussion etc.)

founded 3 years ago
 

Adding the same id multiple times increases the specificity of a selector and thus overrides other selectors.

e.g.

#myId span {color: red; }
#myId#myId#myId span { color: blue; }

Codepen

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here