【发布时间】:2015-02-10 19:06:59
【问题描述】:
如果你在chrome中查看这段代码,未选中的复选框显示为破折号,它们应该是空的,这是为什么?
HTML
<form>
<input type="radio" name="sex" value="male" >Red
<br>
<input type="radio" name="sex" value="female">Blue
<br>
<input type="radio" name="sex" value="female">Orange
<br>
<input type="radio" name="sex" value="female">Green
</form>
CSS
input[type="RADIO"] {
-webkit-appearance: checkbox;
}
【问题讨论】:
-
在我的浏览器中看起来不错....
-
你一样... lubuntu 12.04 with google-chrome-stable
-
你能发个截图吗
标签: html css google-chrome checkbox