Html 内联显示两个表单按钮
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5040935/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Displaying Two Form Buttons Inline
提问by Hirvesh
I've got two form buttons like this:
我有两个这样的表单按钮:
<input type="submit" value="Post"/> <input type="button" value="Cancel"/>
They are displaying one below each other.
它们在彼此下方显示一个。
How can I display them inline?
如何内联显示它们?
采纳答案by balexandre
Has to be something wrong with your CSS as input
's are not block elements
你的 CSS 肯定有问题,因为input
's 不是块元素
and, as you can see in this example, (click in the Preview button) the simple plain html shows them inline
回答by alexl
<span style="display: inline;">
<input type="submit" value="Post"/> <input type="button" value="Cancel"/>
</span>
回答by TimCodes.NET
try style="display:inline;"
:)
试试 style="display:inline;"
:)