gpt4 book ai didi

css - 如何在 Tumblr CSS 上链接固定图像?

转载 作者:太空宇宙 更新时间:2023-11-04 12:24:51 24 4
gpt4 key购买 nike

对于我的 Tumblr 主题,我希望将屏幕右侧的这 4 个固定图像链接到另一个页面。

My Tumblr's link .

这是其中一张图片的 HTML:

<img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandomsbuttons1-1_zps43ab3b55.png" id="icon1" width="90px">

这是它的 CSS:

#icon1 {
display:block;
position:fixed;
right:20px;
top:60px;
z-index:130
}

我尝试使用标签链接它,但随后图像完全消失了。

最佳答案

欢迎来到 StackOverflow,

您应该像您提到的那样使用标记 anchor a 。这是一个工作示例,将 # 替换为您的链接。

<ul>
<li><a href="#"><img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandomsbuttons1-1_zps43ab3b55.png" id="icon1" width="90px" class="icon1_rollover"/></a></li>
<li><a href="#"><img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandoms%20buttons%201-1-2_zpsynh4farl.png" id="icon2" width="90px" class="icon2_rollover"/></a></li>
<li><a href="#"><img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandomsbuttons1-3_zps10c8734d.png" id="icon3" width="90px" class="icon2_rollover"/></a></li>
</ul>

CSS

ul {
list-style: none;
position:fixed;
right:20px;
top:60px;
z-index:130;
}

a {
text-decoration: none;
}

a:hover {
text-decoration:none;
}

您可能想阅读此 tutorial .

顺便说一句,博客不错。

关于css - 如何在 Tumblr CSS 上链接固定图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28094034/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com