这是一个基本的CSS问题,我有一个带有小文本标签的单选按钮。我希望文本显示为垂直居中,但在我的情况下,文本始终与单选按钮的按钮对齐。
<p><input type="radio" id="opt1" name="opt1" value="1" />A label</p>
这是一个Jsfiddle:
有什么建议吗?
谢谢,
艾伦。
答案 0 :(得分:35)
在label
内使用它。使用vertical-align
将其设置为各种值 - bottom
,baseline
,middle
等。
答案 1 :(得分:16)
我认为这是你可能会要求的
CSS
label{
font-size:18px;
vertical-align: middle;
}
input[type="radio"]{
vertical-align: middle;
}
HTML
<span>
<input type="radio" id="oddsPref" name="oddsPref" value="decimal" />
<label>Decimal</label>
</span>
答案 2 :(得分:8)
答案 3 :(得分:5)
HTML:
<label><input type="radio" id="opt1" name="opt1" value="1"> A label</label>
CSS:
label input[type="radio"] { vertical-align: text-bottom; }
答案 4 :(得分:5)
这将导致对齐
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "offlineCell")
let mainImageView = cell?.viewWithTag(2) as! UIImageView
let mainImageURL = offlineImages[indexPath.row]
let mainImageData = NSData(contentsOf: mainImageURL)
let mainImage = UIImage(data: mainImageData! as Data)
mainImageView.image = mainImage
return cell!
}
答案 5 :(得分:3)
您可以尝试类似的事情;
<p><input type="radio" id="oddsPref" name="oddsPref" value="decimal" /><span>Decimal</span></p>
并给予跨度最大的余量;
span{
margin-top: 4px;
position:absolute;
}
答案 6 :(得分:3)
您需要使用float:left
将文本对齐单选按钮的左侧input[type="radio"]{
float:left;
}
您也可以使用标签来提高响应速度。
答案 7 :(得分:2)
简单和简短的解决方案添加以下样式:
style="vertical-align: text-bottom;"
答案 8 :(得分:0)
你也可以尝试这样的事情:
input[type="radio"] {
margin-top: -1px;
vertical-align: middle;
}
<label class="child"><input id = "warm" type="radio" name="weathertype" value="warm" checked> Warm<br></label>
<label class="child1"><input id = "cold" type="radio" name="weathertype" value="cold" checked> Cold<br></label>
答案 9 :(得分:0)
input.radio {vertical-align:middle; margin-top:8px; margin-bottom:12px;}
SIMPLY根据需要调整顶部和底部以完美对齐单选按钮或复选框
<input type="radio" class="radio">