みんな私は、サードパーティのソースから複雑な CSS セレクターに取り組んでいます。私はいくつかのものを使用することができません。
ネストされた CSS の仕組み。ネストされた CSS のようなものがたくさん見られます。
.firstclass
{
.someotherclass { }
}
時折。
.firstclass.secondclass
{
.thirdclass{}
.fourthclass{}
}
また、2 番目のテキスト ボックスの背景色が 'BLACK' になるという私の期待以下のサンプル コードを試してみましたが、それは起こっていません。
<html>
<head>
<style type="text/css">
.style-color
{
background-color:#000000;
}
#id2_.style-color h1
{
background-color:#F0E68C;
.apply
{
background-color:#000000;
}
}
</style>
</head>
<body>
<div id="id1" class="style-color"> <h1> <input type="text" class="apply"> </h1> </div>
<div id="id2_" class="style-color"> <h1> <input type="text" class="apply"> </h1></div>
</body>
</html>