gpt4 book ai didi

html - Bootstrap 4 float-right inside .row

转载 作者:太空狗 更新时间:2023-10-29 13:06:13 29 4
gpt4 key购买 nike

我是 Bootstrap 4 的新手,似乎无法在一行内工作的 col div 上正确 float 。这是我的代码:

<div class="row" >
<div class="col-md-8 float-right" style="border: 1px solid red;">
<h3>Five grid tiers</h3>
<p>Hi</p>

</div>
</div>

奇怪的是,如果没有行作为父 div,它也能正常工作,但我想使用行。我错过了什么吗?

谢谢:)

最佳答案

row 是 bootstrap-4 中的 flex 容器,要对齐 flex-container 中的内容,您需要使用 ml-automr-auto

例子如下:

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<div class="row ml-1">
<div>
Hello from left
</div>
<div class="ml-auto mr-3">
Hello from right
</div>
</div>

这是官方文档链接和示例: https://getbootstrap.com/docs/4.0/utilities/flex/#auto-margins

对于没有使用flex容器的情况,可以使用float-right,相当于之前版本的pull-right

还有一个实用程序 Justify Content 更改弹性容器中项目的对齐方式。

关于html - Bootstrap 4 float-right inside .row,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48272227/

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