我的 HTML 单选按钮是垂直排列而不是水平排列。此外,它们中的每一个的文本都不像我希望的那样位于按钮旁边。
<fieldset>
<legend>Payment Method</legend>
<input type="radio" name="payment_type" value="bill"/>
<label for="bill">Bill Me</label>
<input type="radio" name="payment_type" value="credit" checked/>
<label for="credit">Credit Card</label>
<input type="radio" name="payment_type" value="paypal"/>
<label for="paypal">Paypal</label>
</fieldset>
那是我的 HTML 按钮的代码。我有一个外部样式表,但到目前为止我还没有为按钮实现任何样式。