gpt4 book ai didi

javascript - 获取图像链接到网站

转载 作者:太空宇宙 更新时间:2023-11-03 23:17:43 25 4
gpt4 key购买 nike

我把它放在下面的文件中:index.html

<ul class="youtube">
<li class="gamerscafe"><a href="https://www.youtube.com/channel/UClExmFafx9vTZxDHPwg74Pg"></a></li>
<li class="destiny"><a href="https://www.youtube.com/channel/UCyrifIvvkvGj1c-ltnbop4A"></a></li>
<li class="halo"><a href="https://www.youtube.com/channel/UCjdkHFov_Tqb9mzrEXStrog"></a></li>
<li class="assassins"><a href="https://www.youtube.com/channel/UCSFscOh0tN1hsz-7UMIVYkQ"></a></li>
<li class="gearsofwar"><a href="https://www.youtube.com/channel/UC26Tt6oTOS4UpdGzAOVMZKA"></a></li>
<li class="armyoftwo"><a href="https://www.youtube.com/channel/UCqvhFvrTYsv3VGg9j9elNtA"></a></li>
</ul>

我把它放在 style.css 表中...

ul.youtube
{
width: 650px;
margin: 0px auto 0;
height: 10px;
}

ul.youtube li{
float: left;
background: url(../images/youtube.png) left top no-repeat;
position: relative;
height: 20px;
margin-right: 70px;
}

ul.youtube li a{
display: block;
width: 18px;
height: 20px;
}

但是,当我将鼠标悬停在图片上时,链接不起作用是不是我遗漏了什么?

最佳答案

您的 a anchor 不包含任何要单击的文本/元素。

你需要在你的 a 标签中插入一些东西,例如图片:

<a href="http://URL/TO/DESTINATION">
<img src="http://URL/TO/IMAGE.png" />
</a>

或者,如果你只想跨越一个可点击区域,定义一些内部尺寸的元素

<a href="http://URL/TO/DESTINATION">
<div style="height: 100px; width: 300px;"></div>
</a>

但主要问题是,您的 anchor 没有您可以点击的内容。

编辑:我想您也可以直接编辑 a 的尺寸而不是 div。 a 需要一个 display: block;display:inline-block

关于javascript - 获取图像链接到网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29837395/

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