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; }
You must log in or register to comment.
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; }