我在这里遇到了css选择器问题:http://hrrrthrrr.com.s153901.gridserver.com/heyheyok/contact/
基本上"选择所有适用的"部分应该放一个" x"选中时,在输入左侧的小灰框中。
.form-check-fields {
.wpcf7-list-item {
[type=checkbox]:checked + .wpcf7-list-item-label {
content: "x";
text-align: center;
}
}
}
感谢阅读!
答案 0 :(得分:0)
测试插入此代码
[type="checkbox"]:checked + .wpcf7-list-item-label:before {
border: 1px solid;
color: #FF0000;
content: "x";
position: absolute;
text-align: center;
z-index: 1000;
}
你是说这个......