我在 html 中有以下用于下拉列表的代码,并且我试图将下拉列表包含的值居中。我想必须使用“中心”或 align="center" 但是无论我把它们放在哪里,它都不会居中。谁能指出标签的去向?
<form id="form1" name="form1" method="post" align="center" action="section_search_results.php">
<p>Select The <b>Section</b> You Wish To Search Below... </p>
<p><center>
<label for="section"></label>
<label for="section2"></label>
<select name="section" id="section2">
<option value="Functional">Functional</option>
<option value="Technical">Technical</option>
<option value="Commercial">Commercial</option>
<option value="Implementation">Implementation</option>
<option value="Innovation">Innovation</option></center>
</select>
谢谢