Is there a way to make an HTML element visible at all times, not just on focus?
It seems like it should be as easy as this:
HTML:
<img src="image.png" width="100" height="100" usemap="#Map" />
<map name="Map" id="Map">
<area shape="circle" coords="50,50,50" href="#" alt="circle" />
</map>
CSS:
area {border: 1px solid red}
No matter what I try, it appears that the styling of the area element cannot be affected by CSS. Are there any other examples of un-style-able tags? Any suggestions?