我有下面的样式来实现伪复选框。在现实生活中,它有一个背景图像来显示我想要的标记,但我简化了用于研究目的的示例。它在Chrome和Safari中运行良好,但不适用于Firefox或IE。另一组眼睛将非常感激。
http://www.bootply.com/6xig9trE5C
CODE:
/*CSS*/
ul {
margin: 0 auto;
width: 270px;
}
li {
float: left;
height: 30px;
list-style-type: none;
text-align: left;
white-space: nowrap;
width: 50%;
}
input[type=checkbox] {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
left: -2000px;
margin: -1px;
padding: 0;
position: relative;
width: 1px;
}
input[type=checkbox]:after {
content: 'X';
display: inline-block;
height: 19px;
left: 1969px;
position: relative;
top: -12px;
width: 19px;
}
input[type=checkbox]:checked:after {
content: 'V';
}
label {
cursor: pointer;
display: inline-block;
font-size: 15px;
height: 27px;
line-height: 22px;
padding-left: 32px;
-khtml-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
-webkit-touch-callout: none;
}
<!-- HTML -->
<div class="option">
<ul>
<li>
<label><input name="cb1" type="checkbox" checked="checked" value="1">Checkbox1</label>
</li>
<li>
<label><input name="cb2" type="checkbox" checked="checked" value="2">Checkbox2</label>
</li>
<li>
<label><input name="cb3" type="checkbox" checked="checked" value="3">Checkbox3</label>
</li>
</ul>
</div>
答案 0 :(得分:1)
:before
和:after
伪元素在目标元素的内容之前或之后添加新内容。由于输入元素没有内容;他们只是有价值。所以从技术上讲,我们不能将pseudo element
用于input
元素。
所以我想在这种情况下chrome
浏览器是错误的。和IE
和Firefox
浏览器是对的。
您可以查看w3c所说的内容。
答案 1 :(得分:0)
在这种情况下,知道问题是什么,我通过在输入之后添加空跨度来修复它,并在那里使用样式:after,几乎没有修改。像这样:
<!-- html -->
<label>
<input type="checkbox" checked="checked" value="1" name="cb1">
<span></span>
Checkbox 1
</label>
/*CSS: (with the background use)*/
input[type=checkbox] + span {
background: url("/img/checkbox.png") 0 0 no-repeat;
display: inline-block;
height: 19px;
left: -12px;
position: relative;
top: 3px;
width: 19px;
}
input[type=checkbox]:checked + span {
background-position: 0 -32px;
}