0
私のHTMLがどのように構造化されているのですか?3n
子を選択するのは苦労しています。 heroLetter
の3n
セレクタに気づいていないようですが、1n
子セレクタを使用するとコードはクラスに気付きますが、すべてdiv
も選択します。私はどのように3n
子のセレクターを私が作ったこのクラスの構造体で呼び出すか分からない。CSS Nth-Child 3n階層構造
コード:
.heroLetter {
float: left;
width: 48%;
margin-top: 150px;
text-align: center;
font-size: 600px;
color: #f5543a;
position: relative;
}
.windowWrapper .section .heroLetter:nth-child(3n) {
float: left;
width: 48%;
margin-top: 150px;
text-align: center;
font-size: 200px;
color: #f5543a;
position: relative;
}
<div class="wrapper">
<div id="section1" class="windowWrapper">
<div class="section group">
<h1 class="introH1">
<span class="Grand">GRAND</span>
<span class="Stand">STAND</span>
</h1>
<p class="introP">A new font.</p>
<a href="#section2" class="arrowDown removeText">scroll down</a>
</div>
</div>
<div id="section2" class="windowWrapper">
<div class="section group">
<div class="col span_6_of_12">
<h1>STORY</h1>
<p>Grandstand invokes</p>
</div>
<div class="heroLetter">
G
</div>
</div>
</div>
<div id="section3" class="windowWrapper">
<div class="section group">
<div class="col span_6_of_12">
<h1>PROCESS</h1>
<p>Grandstand invokes</p>
</div>
<div class="heroLetter">
S
</div>
</div>
</div>
<div id="section4" class="windowWrapper form">
<div class="section group">
<div class="col span_6_of_12">
<h1>BEAM</h1>
<p>Grandstand invokes</p>
</div>
<div class="heroLetter">
<div class="circle"></div>
a
</div>
</div>
</div>
</div>
</div>
が含まれているので、それはHTML内のコメントでターゲットを指定してください第四
windowWrapper
です。 ex。 '<! - 私はそれを一つにしたい - >' – zer00ne