我在Blogger中看到了这个标签:
a:link {
text-decoration:none;
color: $(link.color);
}
a:visited {
text-decoration:none;
color: $(link.visited.color);
}
a:hover {
text-decoration:underline;
color: $(link.hover.color);
}
但如果我将a:link
更改为text-decoration:underline
,那么整个博客中的每个链接都会加下划线,这不是我想要的。我只需要在文章/帖子中的链接加下划线。其他一切都保持不变。
答案 0 :(得分:3)
您可以使用 后代选择器 定位帖子内的链接。
.post-body a:link {
text-decoration: underline;
}
在上面的代码中,将.post-body
替换为文章/帖子的ID / Class。最有可能是默认的.post-body。