如何使表单中的提交按钮与文本内联

时间:2015-07-07 00:21:37

标签: html forms button submit

我为南佛罗里达大学的一位教授建立了一个网页。我想知道如何使下面图像中的表单提交按钮显示为与文本内联。它看起来很有趣。

我目前的代码是,

<div>The term $table is not in DDIRANK, but there are enough search         results on PubMed for us to add it. To add the term, please click this button<form action=\"add_term.php\" target=\"_blank\" method=\"post\"><input type=\"hidden\" value=\"$table\" name=\"add\"><input type=\"submit\" value=\"Add $table to database\"></form> and wait for the page to load.</div>;

1 个答案:

答案 0 :(得分:1)

要使提交按钮与文本字段内联,您需要将float: left;添加到按钮的CSS中。

声明CSS属性,如下所示: <form style="float: left">...