单选按钮被隐藏,不会显示

时间:2021-02-12 23:54:50

标签: html css radio-button

已经按照 Radio button is not showing in safari and chrome 中建议的解决方案进行操作,但没有解决问题

该问题不包括在该问题中


我正在使用 WordPress,主题存在单选按钮不显示的问题 请参阅此示例页面:http://weedsdeliver.com/test.html

已经试过了

  • -webkit-appearance: radio;
  • display: inline;
  • 甚至尝试使用 background-color: #xxxxxx;
  • 更改背景颜色

这个问题在所有浏览器中都存在。

2 个答案:

答案 0 :(得分:2)

您应该学习如何在 Chrome 浏览器中检查网页的 html。如果你这样做了,你会看到以下内容:

input[type=checkbox], input[type=radio] {
height: 19px;
opacity: 0;
width: 20px;
}

如果您将不透明度更改为 1,则会出现单选按钮。

input[type=checkbox], input[type=radio] {
opacity: 1;
}

wordpress 有一些插件可以让你轻松修改 css。如果您需要更多帮助,请回复我。

答案 1 :(得分:1)

opacity 中的所有输入单选元素都有一个样式属性 file。删除它或将值更改为 1。

enter image description here

相关问题