gpt4 book ai didi

html - 文本在缩放时转义 flex 容器

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

您好,我正在尝试创建一个用户名片类型的 div,它在左侧有一些图像,在右侧有用户名。我可以完成布局,但在缩放时文本会溢出并转义 flex 容器。这是我的代码。 And this is the ouptut(Try zooming in by ctrl +)

<div style="
border: 1px solid #775CD0;
display:flex;
width:20%;
border-radius:4px;
">
<img src="https://picsum.photos/200/300
" height="30" width="30" style="
align-self:start;
margin-left:10px;
padding-top:2px;
padding-bottom:2px;
">
<img src="https://picsum.photos/200/300/?random
" class="image2" height="18px" width="18px" style="
align-self:start;
margin-top:18px;
margin-left:-15px;
">
<span class="account-name" style="
margin-top:6px;
padding-left:22px;
">
GonFreecks
</span>
</div>

最佳答案

重新移动宽度并使用 display:inline-flex;

<div style="
border: 1px solid #775CD0;
display:inline-flex;

border-radius:4px;
">
<img src="https://picsum.photos/200/300
" height="30" width="30"
style="
align-self:start;
margin-left:10px;
padding-top:2px;
padding-bottom:2px;
"
>
<img src="https://picsum.photos/200/300/?random
" class="image2" height="18px" width="18px"
style="
align-self:start;
margin-top:18px;
margin-left:-15px;
">
<span class="account-name"
style="
margin-top:6px;
padding-left:22px;
">
GonFreecks
</span>
</div>

关于html - 文本在缩放时转义 flex 容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55705589/

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