将鼠标悬停在相关复选框上时,如何激活标签的CSS样式?

时间:2010-07-29 03:59:14

标签: html css css-selectors

每次我将鼠标悬停在复选框的标签上时,它都会变为黄色:

标记

<input type="checkbox" value="hello" id="hello" name="deletefiles[]"/>
<label for="hello">hello</label>

CSS

label:hover, label:active {
   background:yellow;
}

当我将鼠标悬停在相关复选框上时,我希望标签突出显示。如果我将鼠标悬停在复选框上,是否有办法使用CSS触发相同的悬停规则?或者我必须使用JavaScript ...?

4 个答案:

答案 0 :(得分:15)

您可以使用CSS同级选择器,如下所示:

label:hover, label:active, input:hover+label, input:active+label {
    background:yellow;
}

请注意,这在IE6中不起作用。

答案 1 :(得分:6)

只需将复选框放在标签内:

<label for="hello">
  <input type="checkbox" value="hello" id="hello" name="deletefiles[]"/>
  hello
</label>

现在,当您将鼠标悬停在复选框上时,您也会将鼠标悬停在标签上,现有规则就足以突出显示它。

答案 2 :(得分:2)

jQuery解决方案:

$(document).ready(function(){
   $('#hello, label[for="hello"]').hover(function(){$(this).addClass('.hover');},
                                         function(){$(this).removeClass('.hover');});

});

...

.hover
{
   background-color: yellow;
}

这可以在IE6中运行。

答案 3 :(得分:0)

/*CSS*/
/*-------------------------------------------------*/
input:not(:checked) + label:hover{
  color: #d51e22;
  cursor: pointer;
  background-color: #bbb;
}

input:checked + label[for="tab1"],
input:checked + label[for="tab2"],
input:checked + label[for="tab3"],
input:checked + label[for="tab4"]{
 color: #d51e22;
 text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
 background-color: #000;
}

label[for="tab1"],[for="tab2"],[for="tab3"],[for="tab4"] {
  width:24%;
  display: inline-block;
  margin: 0 0 -1px;
  padding: 25px 25px;
  font-weight: 600;
  font-size:24px;
  text-align: center;
  border-radius:15px;
  background-color: #d51e22;
  color: #fff;
  /*border: 1px solid transparent;*/
}

/*HTML*/
/*-------------------------------------------------*/
<input id="tab1" type="radio" name="tabs" checked>
  <label for="tab1">Text here</label>

  <input id="tab2" type="radio" name="tabs">
  <label for="tab2">Text here</label>

  <input id="tab3" type="radio" name="tabs">
  <label for="tab3">Text here</label>

  <input id="tab4" type="radio" name="tabs">
  <label for="tab4">Text here</label>