修改 tumblr 主题的链接设计
我正在尝试修改主题中链接的显示方式,我目前正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试这个(注意 a:link 在 CSS 中不存在):
“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" 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).