Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS how to override a link style? Re: how to override a link style?

#138539
Alen
Participant

Or create a Pen: http://codepen.io/pen/ with your code.

Over-ridding styles is easy, last style declared will take affect. So if you have:

.box { color:red; }
.box { color: green; } /* this is the style that overrides the top .box */