I need help figuring out how to display part of a word with an underline, and part of it without. Specifically, I want the "registered" symbol to not have an underline.
Here is the HTML code snippet:
<h3>Basecamp<span class="sup">®</span></h3>
And here is the CSS code snippet:
h3 {
font-size: 21px;
color: #369;
font-weight: bold;
text-decoration: underline;
margin-top: 5px;
padding: 5px;
}
.sup {
vertical-align: super;
text-decoration: none; /*how do i remove this?!*/
font-size: 50%;
font-weight: 400;
}