如何使边距折叠与输入类型=按钮/提交一起工作?

发布于 2024-09-27 23:54:54 字数 701 浏览 4 评论 0原文

考虑以下代码

<p style="margin: 30px 0; padding: 0;">Some text some text some text some text some
text some text some text some text</p>

<p style="margin: 30px 0; padding: 0;">Some text some text some text some text some
text some text some text some text</p>

<input type="button" value="Button" style="margin: 30px 0; padding: 0; float: right;"/>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

最后一个p30px边距code> 和 input 但有 60px 边距。显然保证金崩溃不起作用。如何修复input的CSS规则,同时保持input在顶部产生30px垂直边距的能力?

Consider following code:

<p style="margin: 30px 0; padding: 0;">Some text some text some text some text some
text some text some text some text</p>

<p style="margin: 30px 0; padding: 0;">Some text some text some text some text some
text some text some text some text</p>

<input type="button" value="Button" style="margin: 30px 0; padding: 0; float: right;"/>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

30px margin expected between last p and input but there is 60px margin. Apparently margin collapsing not working. How to fix CSS rules of input while keeping the ability of input to produce 30px vertical margin on top?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红墙和绿瓦 2024-10-04 23:54:54

尝试在 input 上设置 display:block

编辑:然后在它周围扔一个包装器?

http://jsfiddle.net/8mqHZ/13/

Try setting display:block on the input

EDIT: Just throw a wrapper around it then?

http://jsfiddle.net/8mqHZ/13/

骑趴 2024-10-04 23:54:54

我找到的唯一解决方案:

<div style="text-align: right; margin: 30px 0;">
    <input type="button" value="Button" />
</div>​​​​​​​​​​

一点点破解。

The only solution I have found:

<div style="text-align: right; margin: 30px 0;">
    <input type="button" value="Button" />
</div>​​​​​​​​​​

A little bit of hack.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文