我正在使用以下代码在 html 中创建表单。但输出未对齐。在标题和元素之间插入了一个空格。
[<h2>Update the Transaction Details</h2>
<table>
<tr>
<h4><td>Transaction Date:</h4></td> <td><input type="text" name="transactiondate" class="tcal" /></td></tr> <br><br>
<tr><td><h4>Category:</h4></td> <td><select name="category" id="category">
<option selected="selected" disabled="disabled"></option>
<option value="Electricity">Electricity</option>
<option value="Food">Food</option>
<option value="Others">Others</option>
</select></td></tr> <br><br>
<tr><td><h4>Amount:</h4></td> <td>$<input type="text" name="amount" /></td></tr> <br><br>
<tr><td><h4>Mode of Payment:</h4></td> <td><input type="radio" name="modeofpayment" value="debit"><h5>Debit</h5></td>
<td><input type="radio" name="modeofpayment" value="credit"><h5>Credit</h5> </td></tr> <br><br>
<tr><td><h4>Comments:</h4></td> <td><input type="text" name="comments" /></td></tr> <br><br>
<tr><td><input type="submit" name="update" value="Update" /></td></tr>
</tr></table>