gpt4 book ai didi

html - 如何在没有第二张图片换行的情况下正确 float 两张图片?

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

我有两张图片我想向右浮动并保持在同一条线上。但是发生的事情是万事达卡图像在右边,而维萨卡图像在新行上 float 。有什么帮助吗?谢谢

HTML:

  <label>
<img src="{% static 'img/Mastercard.png' %}" style="float:right">
</label>
<div class="clear"></div>
<label>
<img src="{% static 'img/Visa.png' %}" style="float:right">
</label>
<div class="clear"></div>

CSS:

.clear {
clear: both;
}

最佳答案

可以使用flexbox来实现。

html

<div id="container">
<label> <img src="./react-logo.png" /> </label>
<label> <img src="./pic_angular.jpg" /> </label>
</div>

CSS

  img {
max-width: 100%;
object-fit: cover;
}

#container {
display: flex;
justify-content: flex-end;
}

结果

enter image description here

关于html - 如何在没有第二张图片换行的情况下正确 float 两张图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53467407/

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