Checkbox和radiobutton不会显示

时间:2016-08-02 12:45:59

标签: php html css

我正在制作一个html主题,想要添加我的表单,我一直在搞乱css,但那不起作用。复选框和单选按钮不可见。这是表单的链接。 http://watisklantenmailen.nl/test/formulier.php 希望有人可以帮忙。谢谢!

2 个答案:

答案 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;看到你的复选框