gpt4 book ai didi

CSS 从 div 边缘突出图像

转载 作者:太空宇宙 更新时间:2023-11-04 15:43:42 26 4
gpt4 key购买 nike

#col{
width:200px;
float:left;
overflow:visible;
position:relative;
z-index:2;
}

<div id="col">

<img style="margin-left:-6px; z-index:999; position:relative;" src="img.jpg" />
</div>

我希望图像向左突出 6 像素,但它被截断了。

我还必须在每行代码的字体中放置 4 个空格,这非常慢!

最佳答案

您的图像被截断了,因为您在父级 div#col 上使用了溢出

<div id="col">
<img src="img.jpg" alt="some info">
</div>

CSS

#col{
width:200px;
float:left;
position:relative;
/*overflow: visible;*// remove
/*z-index:2;*// no need to do that
}
#col img {
position: absolute;
top: 0;
left: -6px;
width: width of image in px;
height: height of image in px;
}

关于CSS 从 div 边缘突出图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11936548/

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