17

我要做的是在选中标签+复选框时显示和隐藏一个div。(仅限 CSS)

因此,如果单击(选中)[注册]。隐藏自身(div.remove-check)并显示隐藏的输入(div#email)。我认为我拥有的代码已经足够好了,但事实并非如此。我究竟做错了什么?

我的代码:

html:

<div class="remove-check">
    <label for="reveal-email" class="btn" style="width: 300px"><input type="checkbox" id="reveal-email" role="button" />Sign Up</label>
</div>
<br>
<div id="email">
    <form id="email-form" class="nice" action="" method="post">
        <input class="input-text required email" type="text" name="EMAIL" id="id_email" placeholder="Email" />
        <input type="hidden" name="name" id="id_name_email">
        <a class="btn" >Apply</a>
    </form>
</div>

CSS:

input[type=checkbox]{
    visibility: hidden;
}
input[type=checkbox]:checked ~ .remove-check{
    display: none;
}
input[type=checkbox]:checked ~ #email{
    display: block;
}
#email{
    display: none;
}

这是一个小提琴,向您展示我正在使用的内容。

提前谢谢你的帮助。

4

2 回答 2

26

目前 CSS 中没有父选择器,这就是该代码不起作用的原因。该复选框必须与相关 div 处于同一级别。有 CSS 父选择器吗?


您可以将其从标签中取出,将它们放在同一个平面上,如图所示。
这个例子应该工作:

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked~.remove-check {
  display: none;
}

input[type=checkbox]:checked~#email {
  display: block;
}

#email {
  display: none;
}


/*  ------ Just styles ------ */

input[type=text] {
  width: 225px;
  padding: 12px 14px;
}

body {
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  color: #222222;
}

.btn {
  width: auto;
  background: #2ba6cb;
  border: 1px solid #1e728c;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 10px 20px 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.15s ease-in-out;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}

.btn:hover {
  background: #006582;
}
<label for="reveal-email" class="btn" style="width: 300px"> Sign Up</label>
<input type="checkbox" id="reveal-email" role="button">

<div id="email">
  <form id="email-form" class="nice" action="" method="post">
    <input class="input-text required email" type="text" name="EMAIL" id="id_email" placeholder="Email" />
    <input type="hidden" name="name" id="id_name_email">
    <a class="btn">Apply</a>
  </form>
</div>

在 JSFiddle 上查看

于 2013-09-11T22:27:50.273 回答
5

CSS 选择器~称为通用同级选择器。它只选择前面选择器的兄弟姐妹(不是父母或阿姨/叔叔)。

例如:

input[type=checkbox]:checked ~ .remove-check {
    display: none;
}

方法:

对于选中的任何复选框,隐藏具有类 remove-check 的任何兄弟(层次结构中同一级别的元素)。

目前没有 CSS 选择器将样式沿链应用到父级。

您必须将复选框设置为电子邮件 div 的兄弟,或者使用一些非 CSS 方法(如 JavaScript)来执行您想要的操作。

于 2013-09-11T22:28:12.163 回答