html – 是否可能将图像放入输入类型=“复选框”?

前端之家收集整理的这篇文章主要介绍了html – 是否可能将图像放入输入类型=“复选框”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在复选框&我的HTML代码中的单选框,但它不工作,但它的工作在其他form属性.

解决方法

我发现如何给图像复选框&单选按钮与纯CSS.

HTML

<input type='checkBox' name='thing' value='valuable' id="thing"/><label for="thing"></label>

CSS

input[type=checkBox] {
    display:none;
}

input[type=checkBox] + label {
    background: #999;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
}

input[type=checkBox]:checked + label {
    background: #0080FF;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
}

检查这个更多http://css-tricks.com/the-checkbox-hack/,

https://gist.github.com/592332

原文链接:https://www.f2er.com/html/229555.html

猜你在找的HTML相关文章