gpt4 book ai didi

HTML 和 CSS,水平对齐 2 个按钮而不丢失表单操作

转载 作者:行者123 更新时间:2023-11-28 02:19:26 25 4
gpt4 key购买 nike

enter image description here

这两个按钮中的每一个都调用一个外部 php 页面。它们在页面上的显示方式都是垂直对齐的。我怎样才能水平对齐彼此,当然不会丢失表单操作。?看截图

下面的代码,非常感谢。

<form action="reboot.php" method="get">
<button class="button button3" type="submit">Server Reboot</button>
</form>

<form action="shutdown.php" method="get">
<button class="button button3" type="submit">Server Shutdown</button>
</form>

最佳答案

这里是你如何做到的!

<div class="form-wrapper">
<form action="reboot.php" method="get">
<button class="button button3" type="submit">Server Reboot</button>
</form>

<form action="shutdown.php" method="get">
<button class="button button3" type="submit">Server Shutdown</button>
</form>
</div>
.form-wrapper{
display: flex;
}
CSS 中的

display: flex 水平对齐所有包含的元素。

关于HTML 和 CSS,水平对齐 2 个按钮而不丢失表单操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58789411/

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