作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用这段代码在 MVC 中有 Razor View :
<td>
@Html.CheckBoxFor(m=>m[i].checkExport)
</td>
我想改变复选框的背景,所以我写了这段代码
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]+label {
background: url('images/delete.png') no-repeat;
height:17px;
}
input[type="checkbox"]:checked + label {
background: url('images/delete.png') no-repeat;
height:17px;
}
但是当我运行它时它什么也没显示。我该如何解决这个问题?
最佳答案
您的 CSS 暗示存在标签
紧接相关输入
。
如果 label
不存在,则不会显示任何内容,因为您已经告诉 input
不显示。
通常的结构如下:
<input id="chk" type="checkbox" />
<label for="chk"></label>
注意:input
和关联的 label
由 id/for 连接链接。这对于确保单击 label
激活关联的 input
至关重要。
然后您的 CSS 会相应地应用。
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]+label {
width: 16px;
height: 16px;
display: inline-block;
background-image: url(http://icons.iconarchive.com/icons/visualpharm/must-have/16/Delete-icon.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
input[type="checkbox"]:checked + label {
background-image: url(http://www.fatcow.com/images/icons/tick.png);
}
下面的演示:
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]+label {
width: 16px;
height: 16px;
display: inline-block;
background-image: url(http://icons.iconarchive.com/icons/visualpharm/must-have/16/Delete-icon.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
input[type="checkbox"]:checked + label {
background-image: url(http://www.fatcow.com/images/icons/tick.png);
}
<input id="chk" type="checkbox" />
<label for="chk"></label>
<input id="chk2" type="checkbox" />
<label for="chk2"></label>
关于CSS 复选框图像不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30300867/
我是一名优秀的程序员,十分优秀!