gpt4 book ai didi

html - 无法在按钮之间留出空间

转载 作者:行者123 更新时间:2023-11-28 10:02:03 24 4
gpt4 key购买 nike

我有 html 表单和 css,将我的按钮并排放置。但我无法在按钮之间留出空间。

这是我的代码:

<html>
<body>

<div class="custom-buttons">



<form action="http://trinker.github.io/qdap_dev/paste2.html" target="_blank">
<input type="submit" style="float:left;color:#fff" value="paste2"/></form>

<form action="http://trinker.github.io/qdap_dev/colSplit.html" target="_blank">
<input type="submit" style="float:left" value="colSplit"/>
</form>


<p style="clear:floats"></p>

</div>


</body>
</html>

最佳答案

在本例中,您希望将 form 元素设置为 float 。从那里,您可以向第一个 form 元素添加边距。

<html>
<body>

<div class="custom-buttons">

<form action="http://trinker.github.io/qdap_dev/paste2.html" target="_blank" style="float: left; margin-right: 5em;">
<input type="submit" value="paste2"/>
</form>

<form action="http://trinker.github.io/qdap_dev/colSplit.html" target="_blank" style="float: left;">
<input type="submit" value="colSplit"/>
</form>

</div>

</body>
</html>

关于html - 无法在按钮之间留出空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24688683/

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