次のような HTML 構造があります。
<div class="container">
<label>Name:</label>
<div class="controls">
<input type="text" class="formatted-input"></input>
</div>
</div>
「formatted-input」クラスにしかアクセスできません。そのクラスから最も外側の親のラベルに移動し、フォーマットを適用する方法が必要です。これは LESS CSS を使用して可能ですか?
私はこのようなものを思いついた:
.container .formatted-input
{
& & > label {
color: yellow;
}
}
しかし、それは機能しません。助言がありますか?
ありがとう!