gpt4 book ai didi

html - img 元素上带有空格的行

转载 作者:行者123 更新时间:2023-11-28 04:16:36 25 4
gpt4 key购买 nike

img:after,
img:before {
/*POSSIBLE SOLUTION WITH PSEUDO?*/
}
<img src="https://dummyimage.com/vga">

我必须在 img 元素的左侧绘制两条垂直线。线条的宽度 应为5px。第一行在 img 的左侧。在第二行开始之前还有一个 5px 的空间。

我发现这个解决方案包含 span 元素:Using CSS to Draw 3 Vertical Lines on and Image

是否有更好的替代解决方案?我用伪 :after:before 尝试过,但没有得到。有什么想法吗?

原始图片: enter image description here

带线条的图片: enter image description here

最佳答案

你需要包装图像并将伪元素放在包装上。像这样尝试:

.my-image-wrap {
position: relative;
}

.my-image-wrap:before,
.my-image-wrap:after {
content: '';
position: absolute;
display: block;
width: 5px;
background-color: red;
left: 0;
top: 0;
bottom: 0;
}

.my-image-wrap:after {
left: 10px;
}
<div class="my-image-wrap">
<img src="https://dummyimage.com/vga">
</div>

关于html - img 元素上带有空格的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46770207/

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