Diving into components and the very first thing i wanted to do doesn’t work as i want it to.
i have a component that is nothing more than a bunch of <a>
elements wrapped in a <p>
which is then contained by a <div>
i want to style it by putting a background image onto the <div>
and making all the link text transparent so when you click on the background image, you are actually activating the link.
you can see how it works at ranttit.net
the problem is how can i have multiple instances of this component in my project when the image is defined in the CSS which applies to ALL instances of the component?
i don’t see a way to make a rule in my CSS file “editable”, unless i’m missing something (which i probably am).
anyone have thoughts on this?