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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 06:48:32  来源:igfitidea点击:

Displaying Two Form Buttons Inline

htmlcss

提问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

并且,正如您在此示例中所见,(单击“预览”按钮)简单的纯 html 将它们内联显示

回答by alexl

<span style="display: inline;">
  <input type="submit" value="Post"/> <input type="button" value="Cancel"/>
</span>

http://jsfiddle.net/UQ7xv/

http://jsfiddle.net/UQ7xv/

回答by TimCodes.NET

try style="display:inline;":)

试试 style="display:inline;":)