如何一键定位两个元素?

How to target two elements with one click?

我想在点击一个框后改变它的背景颜色,同时创建另一个纯 CSS 的框。我用目标选择器试过了。但是我只能做其中一个,不能同时做两个。

这是我的 DEMO 尝试。

/* fonts */

p {
  font-size: 10px;
}
#school::after,
#work::after {
  font-size: 10px;
  content: "Second box";
  color: white
}
/* white boxes */

.panel {
  height: 50px;
  width: 50px;
  background-color: white;
  border: 1px solid #262626;
  position: relative;
}
/* span (100%, 100%) inside the white-boxes */

.panel span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* second-box */

.panel div {
  display: none;
}
/* if white-box is targeted, this lets the second-box appear */

.panel div:target {
  display: block;
  height: 50px;
  width: 50px;
  background-color: blue;
  border: 1px solid black;
  border-radius: 4px;
  position: absolute;
  left: 70px;
}
/* for testing purposes */

.panel:active span {
  background-color: black;
}
<p>White Boxes</p>
<div class="panel">
  <a href="#school">
    <span></span>
  </a>
  <div id="school"></div>
</div>

<div class="panel">
  <a href="#work">
    <span></span>
  </a>
  <div id="work"></div>
</div>

:target 只能同时针对一个元素,因为你不能同时针对两个锚点。您需要 javascript 或 css :checked

技巧

纯css:checked

的解决方案

http://jsfiddle.net/KNG6n/78/

我做的:

<div class="panel">
    <label>
        <input type="checkbox">
        <div></div>
    </label>
</div>

CSS

label {
    display:block;
    position: relative;
    width: 100%;
    height: 100%;
}
label input {
    visibility: hidden;
}
label input:checked + div {
    display: block;
}

您可以使用 :target 伪 class 修改 任意数量的元素 的显示,只要每个元素都嵌套在元素中id :targeted:

/* fonts */
p {
    font-size: 10px;
}

#school div::after, #work div::after {
    font-size: 10px;
    content: "Second box";
    color: white
}


/* white boxes */
.panel {
    height: 50px;
    width: 50px;
    background-color: white;
    border: 1px solid #262626;
    position: relative;
}

/* span (100%, 100%) inside the white-boxes */
.panel span {
    position:absolute; 
    width:100%;
    height:100%;
    top:0;
    left: 0;
}

/* second-box */
.panel a div {
    display: none;
}

/* if white-box is targeted, this lets the second-box appear */
.panel a:target div {
    display: block;
    height: 50px;
    width: 50px;
    background-color: blue;
    border: 1px solid black;
    border-radius: 4px;
    position: absolute;
    left: 70px;
}


/* if white-box is targeted, this gives the box a blue background */
.panel a:target span {
    background-color: blue;
}


/* for testing purposes */
.panel:active span {
    background-color: black;
}
<p>White Boxes</p>
<div class="panel">
    <a href="#school" id="school">
    <span></span>
    <div></div>
    </a>
</div>

<div class="panel">
    <a href="#work" id="work">
    <span></span>
    <div></div>
    </a>
</div>

我看到一个答案已被接受,但如果其他人有兴趣,post 我的解决方案。

我将 div 的位置更改为 link 之前,并添加了 css 规则。

新代码:

<p>White Boxes</p>
<div class="panel">
    <div id="school"></div>
    <a href="#school">
        <span></span>
    </a> 

</div>

<div class="panel">
    <div id="work"></div>
    <a href="#work">
        <span></span>
    </a>

</div>

CSS 添加:

.panel div:target+a span{
    background-color: black;
}

演示: http://jsfiddle.net/KNG6n/81/