在Blogger中,如何仅在内部帖子下划线

时间:2015-06-16 07:14:23

标签: html css blogger

我在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,那么整个博客中的每个链接都会加下划线,这不是我想要的。我只需要在文章/帖子中的链接加下划线。其他一切都保持不变。

1 个答案:

答案 0 :(得分:3)

您可以使用 后代选择器 定位帖子内的链接。

.post-body a:link {
  text-decoration: underline;
}

在上面的代码中,将.post-body替换为文章/帖子的ID / Class。最有可能是默认的.post-body。