单选按钮在iPhone中看起来很奇怪

时间:2018-09-07 21:55:10

标签: ios css button radio

我正在研究解决单选按钮的问题,该单选按钮在检查时会丢失样式。我附上了问题的图片。我所遵循的样式。

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    border: none;
    background-color: transparent;
    margin: 0 .1em 0 0;
    vertical-align: middle;
}

我尝试重写该样式,因为还有其他元素使用这些样式,而我现在要使用的当前样式如下。

.search-results {
    input:checked + span {
        display: block;
    }
}

但是该代码不起作用。

enter image description here

0 个答案:

没有答案