gpt4 book ai didi

html - 在图像上创建超链接,只关注链接的轮廓

转载 作者:行者123 更新时间:2023-11-28 08:54:27 25 4
gpt4 key购买 nike

我正在像这样在 img 上创建链接 anchor

<a href="xxx.html"><img src="image.jpg" width="100px" height="100px"/></a>

在图像上切换,轮廓仅显示链接周围的边框(这是行高)而不是整个图像。尝试了 css outline-offset,但它会拉伸(stretch)轮廓的宽度。

有什么方法可以在完整图像上设置轮廓吗?

最佳答案

设置 anchor 标签为display:inline-block

a{display:inline-block}

a {
display: inline-block;
}
a:focus {
border: 1px solid red;
}
<a href="#">
<img src="http://placeimg.com/640/480/any" width="100px" height="100px" />
</a>

关于html - 在图像上创建超链接,只关注链接的轮廓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27199273/

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