gpt4 book ai didi

html - 在 div 中水平和垂直居中按钮

转载 作者:行者123 更新时间:2023-12-02 08:15:56 28 4
gpt4 key购买 nike

我要中心 按钮水平垂直 div 的中间为我的元素。

这是html代码:

<div class="PageHeader_wrapper" id="header-buttons">
<form id="CreateAccount" action="CreateAccount.php" method="post">
<input type="submit" value="Create an account">
</form>
</div>

CSS 这里 :
#header-buttons {
margin-right: 35px;
float: right;
height: 68px;
width: auto;
border: 1px solid red;
}

Js 在这里拨弄: https://jsfiddle.net/m635r2rf/10/

最佳答案

使用 display: flex; align-items: center; justify-content: center; 的组合.此外,这是一个有用的引用 https://www.w3.org/Style/Examples/007/center.en.html

#header-buttons {
margin-right: 35px;
float: right;
height: 68px;
width: auto;
border: 1px solid red;
display: flex;
align-items: center;
justify-content: center;
}
<div class="PageHeader_wrapper" id="header-buttons">
<form id="CreateAccount" action="CreateAccount.php" method="post">
<input type="submit" value="Create an account">
</form>
</div>

关于html - 在 div 中水平和垂直居中按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41884619/

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