http://caveo.sg/gama/motor-insurance-2.php
单选按钮不起作用。看起来像CSS问题,但我无法得到解决方案。
在HTML代码中如下:
<input type="radio" name="gender" value="male" id="gender1"/>Male
<input type="radio" name="gender" value="female" id="gender2"/>Female
CSS中的代码:
input,
textarea {
border-radius: 0 !important;
outline: none !important;
-webkit-appearance: none;
}
答案 0 :(得分:1)
你必须删除-webkit-appearance:none;
-webkit-apperance =使元素看起来像一个按钮或其他东西
答案 1 :(得分:1)
问题是你使用标签。删除标签,它将工作:) 您也可以使用标签,但将其用于一种输入类型(单选按钮)。当您将它用于一个组时,它不起作用。
(此问题仅适用于Firefox)