我试图将#commentslink 的颜色更改为白色。我所有其他字体样式(字体系列、大小)都在工作,只是颜色不会改变
我的 HTML 是这样的;
<div id="commentslink">
<div class="circle">
<p><a href="">10</a></p>
</div>
</div>
我的 CSS 是这样的
a:link, a:visited {
color: #0eb0d3;
text-decoration: none;
}
a:hover {
color: #0eb0d3;
opacity: 0.4;
text-decoration: none;
}
#commentslink {
float: right;
font-color: #ffffff;
font-size: 19px;
font-family: 'Montserrat', sans-serif;
}
.circle {
float: right;
background-color: #f89b2d;
width: 32px;
height: 32px;
border-radius: 16px;
position: relative;
margin-top: -10px;
margin-right: 20px;
}