LoginSignup
0
0

More than 3 years have passed since last update.

css 子セレクタ

Posted at

cssを使っている際に出てくる>(山かっこ)

div > p{
color: red;
}

これは子供セレクタ、子セレクタというらしく、直接の子どもにしか適用されない模様。

div {
    background-color: bisque;
    width: 100px;
    height: 100px;
}
div p{
    color: blue;
}
div >p{
    color: red;
}
    <div>
        <p>あああ</p>
        <p>いいい</p>
        <div>
            <li>
                <p>ううう</p>
            </li>
        </div>
    </div>

結果
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0