0

目前,当您制作复选框时,“框”位于文本的左侧。是否可以调整方向:

1:垂直(上):

2:垂直(下):

3:水平(文本右侧):

?

4

2 回答 2

2

你的意思是这样的?

<label>This is a checkbox: <input type="checkbox" /></label>
于 2012-06-17T03:58:10.783 回答
1

输入复选框与文本无关。

左边的盒子:

<input type="checkbox" name="v[]" value="1"> 1
<input type="checkbox" name="v[]" value="2"> 2
<input type="checkbox" name="v[]" value="3"> 3

右边的盒子:

1 <input type="checkbox" name="v[]" value="1">
2 <input type="checkbox" name="v[]" value="2">
3 <input type="checkbox" name="v[]" value="3">

如果你打算把它放在下面或上面,也许你可以创建一个像这样的表:

<table>
    <tr>
        <td>ONE</td>
        <td>II</td>
        <td>3</td>
    </tr>
    <tr>
        <td><input type="checkbox" name="v[]" value="1"></td>
        <td><input type="checkbox" name="v[]" value="2"></td>
        <td><input type="checkbox" name="v[]" value="3"></td>
    </tr>
</table>
于 2012-06-17T04:00:32.937 回答