I have a CMS system that is generating some links. I need to tell this link to be a different color, but it is generated by the CMS. It looks something like this.
<div class="myClassHere">
<a link="someLink">Some Link</a>
</div>
What I'm wondering is if there is a way to tell the link in myClassHere to do something different than the default
a{
/*css here*/
}
That I have defined. Can I do this with something like myClass.a{
}
or something like that? Thanks,