<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
和p
之间预计会有{p> input
个保证金,但保证金为60px
。显然保证金崩溃不起作用。如何修复input
的CSS规则,同时保持input
生成30px
垂直边距的能力?
答案 0 :(得分:3)
答案 1 :(得分:0)
我找到的唯一解决方案:
<div style="text-align: right; margin: 30px 0;">
<input type="button" value="Button" />
</div>
一点点黑客攻击。