gpt4 book ai didi

css - 左右浮动在同一行

转载 作者:行者123 更新时间:2023-11-28 08:15:07 27 4
gpt4 key购买 nike

第一张图片和文件标签在同一行,但最后一张图片在第二行。

我希望这三个元素在同一行。

这是我的代码:

HTML:

<div>
<img src="{{asset('bundles/cramifaccueil/images/pdfdocument.png')}}"
title="{% trans %}dialog.pdf.file{% endtrans %}"
class="smallImagesFloatLeft"
/>
<div class="fileLabel">{% trans %}file.note.service.2584{% endtrans %}</div>
<img src="{{asset('bundles/cramifaccueil/images/download.png')}}"
title="{% trans %}download{% endtrans %}"
class="smallImagesFloatRight"
/>
</div>
<div>
<img src="{{asset('bundles/cramifaccueil/images/pdfdocument.png')}}"
title="{% trans %}dialog.pdf.file{% endtrans %}"
class="smallImagesFloatLeft"
/>
<div class="fileLabel">{% trans %}file.mode.operatoire{% endtrans %}</div>
<img src="{{asset('bundles/cramifaccueil/images/download.png')}}"
title="{% trans %}download{% endtrans %}"
class="smallImagesFloatRight"
/>
</div>

CSS:

.smallImagesFloatLeft {
float:left;
margin-right:5px;
cursor: default;
}

.smallImagesFloatRight{
float:right;
}

.fileLabel {
max-width: 75%;
}

最佳答案

假设一行中有空间,您只需重新排列元素,使 float 元素位于非 float 元素之前:

<div>
<img src="{{asset('bundles/cramifaccueil/images/pdfdocument.png')}}"
title="{% trans %}dialog.pdf.file{% endtrans %}"
class="smallImagesFloatLeft"
/>
<img src="{{asset('bundles/cramifaccueil/images/download.png')}}"
title="{% trans %}download{% endtrans %}"
class="smallImagesFloatRight"
/>
<div class="fileLabel">{% trans %}file.note.service.2584{% endtrans %}</div>
</div>

http://jsfiddle.net/o0ksu724/

关于css - 左右浮动在同一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29037808/

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