What you are trying to do is not supported in CSS - you cannot create a parent style. The best approach here would be to add a class to the link:
<a href="http://www.stackoverflow.com" class="ImportantLink">Go to website</a>
CSS
a.ImportantLink { font-weight:bold; } a.ImportantLink:hover { text-decoration: none; }
Thus, the connection can be easily formed. <strong> may be semantically incorrect if you use it only to style the link, and not to underline the text (although this may be less important, to be honest)
Working example: http://jsbin.com/ekuza5
source share