gpt4 book ai didi

html - Bootstrap : pull left and right in panel footer breaks footer

转载 作者:技术小花猫 更新时间:2023-10-29 11:32:12 26 4
gpt4 key购买 nike

我有一个 Bootstrap 面板,底部有两个按钮:

    <div class="panel-footer">
{{ Form::open( array('route' => array('dogs.edit', $dog->id), 'method' => 'get', "class" => 'col-lg-6 ')) }}
{{ Form::submit("Edit", array('class' => 'btn btn-default')) }}
{{ Form::close() }}
{{ Form::open( array('route' => array('dogs.destroy', $dog->id), 'method' => 'delete', "class" => 'col-lg-6 ')) }}
{{ Form::submit("Delete", array('class' => 'btn btn-default')) }}
{{ Form::close() }}
</div>

每个按钮的表单都有 pull-leftpull-right 类,因此它们都 float 到面板页脚的任一侧。

float 效果正常,但按钮现在位于页脚之外:

enter image description here

我尝试使用网格系统而不是拉式助手,但我得到了相同的结果。

我也四处寻找解决方案(我认为这一定很常见)并且没有找到不需要使用自定义 css 覆盖 Bootstrap 的解释。

是否可以仅使用 Bootstrap 来解决这个问题,还是我需要加入自己的 css 来解决这个问题?

最佳答案

只需在按钮后添加一个带有 clearfix 的 div

<div class="clearfix"></div>

关于html - Bootstrap : pull left and right in panel footer breaks footer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23872755/

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