我一直在尝试在表单上设置一些单选按钮的样式,但是自从样式化后,我似乎无法选择它们......
我拥有的CSS是:
.radio-toolbar input[type="radio"] {
display: none;
margin: 10px;
// text-align: center;
}
.radio-toolbar label {
display: inline-block;
background-color: transparent;
border-style: solid;
border-width: 1px;
border-color: white;
padding: 8px 50px;
color: white;
}
.radio-toolbar input[type="radio"]:checked + label {
background-color: white;
color: gray;
}
单选按钮是(HAML):
.form-group
.col-sm-10.radio-toolbar
- YearGroup.all.each do |year_group|
= f.radio_button(:year_group_id, year_group.id)
= label_tag dom_id(year_group), year_group.name
= f.label :year_group
为什么我不能选择它们的任何想法?
答案 0 :(得分:0)
使用opacity:0
而不是display:none
.radio-toolbar input[type="radio"] {
opacity:0;
margin: 10px;
// text-align: center;
}