修改 tumblr 主题的链接设计

发布于 2024-12-04 06:58:14 字数 87 浏览 0 评论 0原文

我正在尝试修改主题中链接的显示方式,我目前正在使用 css 文件中的 a:link a:hover 方法,但它不起作用,我不明白为什么......任何帮助?谢谢

I'm trying to modify the way links display in the theme I'm currently working on with the a:link a:hover method in a css file but it don't work and I can't understand why... Any help ? Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

束缚m 2024-12-11 06:58:14

你可以尝试这个(注意 a:link 在 CSS 中不存在):

a {
   text-decoration:none;
   color:#000;
   font-style:italic;
}
font
a:hover {
   text-decoration:underline;
   color:#000;
}

a:visited {
   color:#000;
}

“a”是链接。 text-decoration: none 删除下划线,text-decoration: underline 添加下划线。 font-style:italic 为链接添加斜体。颜色 #000 是黑色,在 a:visited 中使用该颜色可确保链接在访问后保持黑色(我不知道您是否需要这样,所以我还是添加了它)。

You can try this (note a:link doesn't exist in CSS):

a {
   text-decoration:none;
   color:#000;
   font-style:italic;
}
font
a:hover {
   text-decoration:underline;
   color:#000;
}

a:visited {
   color:#000;
}

"a" is the link. text-decoration: none removes the underline, text-decoration: underline adds the underline. font-style:italic adds an italic to the link. the color #000 is black and using that color in a:visited ensures that the link stays black after it's visited (I didn't know if you would want that so I added it anyway).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文