您好,我在博客上遇到了一些 CSS 问题。我的 Wordpress 主题在 CSS 文件中有一个帖子样式部分,其中有一个“条目”类,其中为文章区域内的链接定义了“a”属性。我从 css 生成器生成了一个按钮,并将该按钮插入到使用 href 指向其他网站的文章中。我的 CSS 文件有这样的东西,
.Entry a{color:black;text-decoration:underline};
.button {background:black;color:white And some other Styling};
我使用此代码来显示按钮。
<a href="some link" class="button">Go to this link</a>
不使用class="button",链接跟随Entry a 属性。但是当我使用 class 时,它会显示混合了 Entry a 和 class 按钮样式的按钮。我不希望按钮使用 Entry a 属性。有什么帮助吗?