gpt4 book ai didi

html - 无法对齐 HTML 表格中的复选框

转载 作者:行者123 更新时间:2023-11-28 06:33:47 27 4
gpt4 key购买 nike

我无法让 table 第一列中的 checkboxes 右对齐。

<form>
<div>
<table>
<th>Trail</th>
<th>Year</th>
<th>Mileage</th>
<th>Direction</th>
<tr>
<td>
<label for="AT">AT</label>
<input type="checkbox" id="AT" name="AT" value="Yes">
</td>

我正在使用以下的 CSS 代码:

input [type=checkbox] {
text-align: right;
}

最佳答案

试试这个怎么样

<table>
<th>Trail</th>
<th>Year</th>
<th>Mileage</th>
<th>Direction</th>
<tr>
<td>
<input type="checkbox" id="AT" name="AT" value="Yes"/>
<label for="AT">AT</label>
</td>

这里是 jsfidlle

关于html - 无法对齐 HTML 表格中的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34824309/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com