gpt4 book ai didi

html - 使用 CSS 将页面上的 div 中的 3 个按钮居中

转载 作者:太空宇宙 更新时间:2023-11-04 00:35:21 24 4
gpt4 key购买 nike

我希望将 3 个按钮保持在页面中央,但是随着窗口变宽,按钮会偏离中央(如图所示)。

用什么 HTML/CSS 来解决这个问题,使它们始终完美居中?

它似乎更偏向左侧,在右侧留下额外的空间。

screenshot of issue

    <body>
<h1 class="title">Creative Checker</h1>
<div class="row">
<div class="col-12 col-md-10 offset-md-1">
<div class="alert alert-success" style="display: none">
</div>
<div class="alert alert-danger" style="display: none">
</div>
<div class="row">
<div class="col-md-12">
<p class="text-center">
1. Select product type:
</p>
</div>
</div>
<div class="row mb-3">
<div class="col-lg-4">
<button type="button" id="btn-snapshot" class="btn btn-secondary col-lg-12">Snapshot</button>
</div>
<div class="col-lg-4">
<button type="button" id="btn-tmd" class="btn btn-secondary col-lg-12">TMD</button>
</div>
<div class="col-lg-4">
<button type="button" id="btn-bpush" class="btn btn-secondary col-lg-12">Behavioural Push</button>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<p class="text-center">
2. Upload folder/images:
</p>
<form action="server.php"
class="dropzone"
id="my-awesome-dropzone"
onsubmit="onSubmit()">
<!-- <select name="product-type" id="product_type">
<option value="snapshot">
Snapshot
</option>
<option value="TMD">
TMD
</option>
<option value="b-push">
Behavioural Push
</option>
</select> -->
</form>
</div>
</div>
</div>
</div>
#btn-snapshot {
z-index: 39;
width: 250px;
min-height: 15px;
background-color: #75ACE0;
border-radius: 20px;
position: relative;
}

#btn-tmd {
z-index: 39;
width: 250px;
min-height: 15px;
background-color: #75ACE0;
border-radius: 20px;
position: relative;
}

#btn-bpush {
z-index: 39;
width: 250px;
min-height: 15px;
background-color: #75ACE0;
border-radius: 20px;
position: relative;
}

最佳答案

text-center 类添加到 col-lg-4 中,按钮将居中。

如果 Bootstrap 不可用,请将以下 CSS 代码添加到您的文件中。

.text-center{
text-align: center;
}

关于html - 使用 CSS 将页面上的 div 中的 3 个按钮居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59577881/

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