Usually I set the hover style of a link by the pseudo-class as shown at e.g. W3Schools.
a:hover { border: solid; }
However, on the current project, I'm only able to control the styles being assigned, not the classes. So, I'm only allowed to provide a statement as follows:
formats.Add("border", "solid");
if I want to affect the looks of the product. Is there a CSS version of style that makes the link look one way or the other? In this particular case, all the effects (hover, active etc.) are supposed to look the same, if it makes it any easier.