我正在制作一个html主题,想要添加我的表单,我一直在搞乱css,但那不起作用。复选框和单选按钮不可见。这是表单的链接。 http://watisklantenmailen.nl/test/formulier.php 希望有人可以帮忙。谢谢!
答案 0 :(得分:0)
您已为opacity: 0
中的复选框和单选按钮设置了main.css
。删除它,它们将出现在您的页面中。
opacity
设置元素的透明度。因此opacity: 1
表示没有透明度,而opacity: 0
表示具有完全透明度的元素(页面上不可见)。
input[type="checkbox"], input[type="radio"] {
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
display: block;
float: left;
margin-right: -2em;
opacity: 0; // <<==== Remove this property to make checkboxes appear.
}
答案 1 :(得分:0)
我检查了你的css文件
我发现在main.css文件中你有以下规则
input[type="checkbox"],
input[type="radio"] {
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
display: block;
float: left;
margin-right: -2em;
opacity: 0;
width: 1em;
z-index: -1;
}
你应该删除不透明度:0;看到你的复选框