我为南佛罗里达大学的一位教授建立了一个网页。我想知道如何使下面图像中的表单提交按钮显示为与文本内联。它看起来很有趣。
我目前的代码是,
<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>;
答案 0 :(得分:1)
要使提交按钮与文本字段内联,您需要将float: left;
添加到按钮的CSS中。
声明CSS属性,如下所示:
<form style="float: left">...