Lessで最初の子セレクターが機能しないのはなぜですか?
.leftPanel{
margin:20px;
float:left;
display:inline;
width:620px;
margin-left:10px;
select{
width:300px;
&:first-child{
margin-right: 30px;
}
}
}
_.leftPanel
_内の最初の子要素が_<select>
_である場合、_margin-right: 30px;
_が必要であることを指定しています。このルールを最初の子要素inside _<select>
_(常に_<option>
_である必要があります)に適用しようとしている場合は、_&:first-child
_を_option:first-child
_。