.table-cell の子を持つコンポーネント .table-view があり、クラスをきれいに保ちたいとします。他のクラスを持たず、table-view の直接の子孫である .table-cell を選択するにはどうすればよいですか? ?
比較的新しい Webkit に実装されているあらゆる種類の高度なセレクターに対応しています。
<div class="table-view">
<div class="table-cell">
<!-- How to select this HTML element without selecting the others? -->
</div>
<div class="table-cell split">
<div class="table-cell">
</div>
<div class="table-cell">
</div>
</div>
</div>