作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我曾多次尝试使滴答声与其他浏览器相同,但对于 edge 来说却不一样。这是我的 fiddle : http://jsfiddle.net/skb643ez/
这是我的 HTML 的结构:
<p>
Test
<a href="/somewhere">Somewhere (link)</a>
</p>
<input type="checkbox" id="test"><label for="test">Test label</label>
<p>
Test
<a href="/somewhere">Somewhere (link)</a>
</p>
我试过 ms-checked 或 ms-expand display none,但这没有任何作用。我认为这是因为 webkit-appearance 不起作用。有没有不使用js或jquery的解决方案?谢谢
最佳答案
我找到了答案,我们将背景和边框颜色设置为::-ms-checked 的透明。 https://jsfiddle.net/ycbvz4tl
input[type=checkbox]:checked {
background-color: transparent;
border-color: transparent;
color: white;
}
关于html - 自定义刻度未显示在边缘/即复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54285468/
我是一名优秀的程序员,十分优秀!