[type = checkbox]:选中内容:“x”;

时间:2014-06-17 04:31:53

标签: css wordpress css-selectors

我在这里遇到了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;
        }
    }
}

感谢阅读!

1 个答案:

答案 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;
   }

enter image description here

你是说这个......