复选框使用不带id的标签(标签css可以更改)

时间:2014-01-25 11:34:16

标签: css

<style>
input[type=checkbox]{display:none}
label{color: black;}
input[type=checkbox]:checked + label{color:red;}
</style>

<label><input type="checkbox">Click</label>

我有一个复选框使用标签点击,当点击复选框时,标签应该改变颜色。我试图实现的是do it without for="id"。我将输入放在标签内,但颜色不会改变。

没有id,有没有办法做到这一点?

4 个答案:

答案 0 :(得分:1)

如果有人偶然发现了这个老问题,我想拿Vangel Tzo的答案进行一点优化。我建议将position:absolute;position:relative;字段的labelinput切换为允许较长的文本正确换行而不会在其下面重叠任何内容:

.hidden-checkboxes {
  font: 14px 'Open Sans', sans-serif;
}

.hidden-checkboxes input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  z-index: 1;
  opacity: 0;
  height: 30px;
}
.hidden-checkboxes label {
  position: relative;
  left: 0;
  top: 0;
  padding: 5px;
  display: inline-block;
  width: 100%;
}

.hidden-checkboxes input[type=checkbox]:checked + label {
  background: #3298dc;
  color: white;
}

.hidden-checkboxes div {
  position: relative;
  margin-bottom: 1px;
}
<div class="hidden-checkboxes" style="width:300px;">
  <div>
    <input type="checkbox"><label>Check me please.</label>
  </div>
  <div>
    <input type="checkbox"><label>Or how about me?</label>
  </div>
  <div>
    <input type="checkbox"><label>How about some long text that will cause wrapping of text?</label>
  </div>  
</div>

备注:字体和margin-bottom仅用于设计演示的样式。

答案 1 :(得分:0)

这有点像黑客,但你可以使用这样的东西:

输入外部标签..

<input type="checkbox"><label>Click</label>

input[type=checkbox] { 
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
    opacity: 0;
}
label {
    position: absolute;
    top: 8px;
    color: black;
}

input[type=checkbox]:checked + label {
    color: red;
}

示例:http://jsfiddle.net/96v7C/

答案 2 :(得分:0)

这是一个完整的单选按钮和复选框示例。

jsFiddle

/*style for iinpul checkbox*/
 input[type=radio], input[type=checkbox] {
    display:none;
}
input[type=radio] + label, input[type=checkbox] + label {
    display:inline-block;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background: -moz-linear-gradient(center top, #FFFFFF 20%, #F6F6F6 50%, #EEEEEE 52%, #F4F4F4 100%) repeat scroll 0 0 padding-box rgba(0, 0, 0, 0);
    border: 1px solid #AAAAAA;
    border-radius: 5px;
    box-shadow: 0 0 3px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #444444;
    display: block;
    height: 34px;
    line-height: 34px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}
input[type=radio]:checked + label, input[type=checkbox]:checked + label {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    background-color:#e0e0e0;
}

答案 3 :(得分:0)

&#13;
&#13;
.c-custom-checkbox {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}
.c-custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 15px;
  width: 15px;
  padding: 0;
  border: 0;
  left: 0;
}
.c-custom-checkbox .c-custom-checkbox__img {
  display: inline;
  position: absolute;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: none;
  background-color: #fff;
  color: #000;
  border: 1px solid #333;
  border-radius: 3px;
  cursor: pointer;
}
.c-custom-checkbox input[type=checkbox]:checked + .c-custom-checkbox__img {
  background-position: 0 0;
  background-color: tomato;
}
&#13;
<label class="c-custom-checkbox">
  <input type="checkbox" id="valueCheck" />
  <i class="c-custom-checkbox__img"></i>Some Label
</label>
&#13;
&#13;
&#13;