仅在帖子下划线中建立链接

问题描述 投票:1回答:1

我试图只使用CSS强调我博客上的帖子中包含的链接。有没有办法只在帖子下划线中使用链接功能,而不会在网站范围内对所有链接加下划线?

我的博客托管在Blogger上,并使用简单模板 - http://nickalive.blogspot.com

感谢您的时间。 :)

html css hyperlink blogger blogs
1个回答
1
投票

是的,您可以通过使用以下CSS实现这一点 -

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

这将仅定位帖子内容中存在的锚标签

© www.soinside.com 2019 - 2024. All rights reserved.