gpt4 book ai didi

html - 使用 Bootstrap 在容器内对齐步进器 div

转载 作者:行者123 更新时间:2023-12-04 12:28:04 24 4
gpt4 key购买 nike

我在容器内的 Stepper 中有一个标题图标列表,我试图让它们响应页面大小的变化,但它不起作用。我试图在不同的 div 中更改容器的位置,但没有用。
我正在使用 Bootstrap5
这是当前的输出:
enter image description here
我正在尝试获取容器内的数字
这是模板:

    <div class="container flex-grow-1 flex-shrink-0 py-5">
<div class="mb-5 p-4 bg-white shadow-sm">
<h1 class="text-center">Plan</h1>
<div id="stepper1" class="bs-stepper">
<div class="bs-stepper-header" role="tablist">
<!-- General Information -->
<div class="step active" data-target="#test-l-1">
<button
type="button"
class="step-trigger"
role="tab"
id="stepper1trigger1"
aria-controls="test-l-1"
aria-selected="true"
>
<span class="bs-stepper-circle">1</span>
<!-- <span class="bs-stepper-label">General Information</span>-->
</button>
</div>
<!-- Summary -->
<div class="step" data-target="#test-l-2">
<button
type="button"
class="step-trigger"
role="tab"
id="stepper1trigger2"
aria-controls="test-l-2"
aria-selected="false"

>
<span class="bs-stepper-circle">2</span>
<!-- <span class="bs-stepper-label">Summary</span>-->
</button>
</div>
</div>
</div>
</div>

最佳答案

您可以使用 col div 里面的类与 row类,每个 button .它会根据屏幕的宽度自动调整每个按钮的宽度。使用 col类(class),每个divbutton将占据相等的空间。在我们的例子中,因为有 10 button元素,每个元素占整个宽度的 10%。
你可以这样做:
HTML:

<div class="container flex-grow-1 flex-shrink-0 py-5">
<div class="mb-5 p-4 bg-white shadow-sm">
<h1 class="text-center">Plan</h1>
<div id="stepper1" class="bs-stepper">
<div class="row mt-5 bs-stepper-header" role="tablist">
<div class="col d-flex justify-content-center" data-target="#test-l-1">
<button type="button" class="step-trigger" role="tab" id="stepper1trigger1" aria-controls="test-l-1" aria-selected="true">
<span class="bs-stepper-circle">1</span>
</button>
</div>
<div class="col d-flex justify-content-center">
<button>2</button>
</div>
<div class="col d-flex justify-content-center">
<button>3</button>
</div>
<div class="col d-flex justify-content-center">
<button>4</button>
</div>
<div class="col d-flex justify-content-center">
<button>5</button>
</div>
<div class="col d-flex justify-content-center">
<button>6</button>
</div>
<div class="col d-flex justify-content-center">
<button>7</button>
</div>
<div class="col d-flex justify-content-center">
<button>8</button>
</div>
<div class="col d-flex justify-content-center">
<button>9</button>
</div>
<div class="col d-flex justify-content-center">
<button>10</button>
</div>
</div>
</div>
</div>
</div>
您也可以添加 CSS:
button {
border: none;
display: flex;
padding: 5px;
justify-content: center;
align-items: center;
border-radius: 50%;
width: 30px;
height: 30px;
}
您可以通过这里的官方文档了解有关 Bootstrap 网格系统的更多信息: https://getbootstrap.com/docs/5.1/layout/grid/
演示样本: https://codepen.io/Hitesh_Vadher/pen/xxrdYYb

关于html - 使用 Bootstrap 在容器内对齐步进器 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68991753/

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