我在无法显示部分带有下划线的单词和部分不带下划线的情况下遇到问题。我希望“注册”符号没有下划线。
HTML:
<h3>Basecamp<span class="sup">®</span></h3>
CSS:
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 get this off?!*/
font-size: 50%;
font-weight: 400;
}