gpt4 book ai didi

html - 为什么我的文字一直向下移动我的图像?

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

如何将我的“contenteditable”文本环绕在图像周围,同时防止图像在文本进入下一行时向下移动?

.note {
width: 280px;
height: 130px;
margin-left: 25px;
padding: 2;
word-break: break-word;
font-family: Note;
font-size: 20px;
z-index: 1;
}
<div class="note" contenteditable="true">Pellentesque pharetra mi lacus, vitae rhoncus nulla hendrerit vitae. Vestibulum nec lectus sed tortor maximus commodo.
<span id='close' onclick='this.parentNode.parentNode.removeChild(this.parentNode)'>
<img src="http://lorempixel.com/40/40/abstract/1/" height="30" width="30" align="right" style="vertical-align: top; float: right"/>
</span>
</div>

最佳答案

将图像放在文本之前,然后应用 float:right 以允许文本围绕图像流动并将图像定位在右上角。

.note {
width: 280px;
height: 130px;
margin-left: 25px;
padding: 2;
word-break: break-word;
font-family: Note;
font-size: 20px;
z-index: 1;
}
#close {
float: right;
}
#close img {
width: 30px;
height: 30px;
}
<div class="note" contenteditable="true">
<span id='close' onclick='this.parentNode.parentNode.removeChild(this.parentNode)'>
<img src="https://upload.wikimedia.org/wikipedia/commons/8/89/X-icon.png"/>
</span>
Pellentesque pharetra mi lacus, vitae rhoncus nulla hendrerit vitae. Vestibulum nec lectus sed tortor maximus commodo.
</div>

关于html - 为什么我的文字一直向下移动我的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31820634/

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