<div>
内にいくつかの がある場合<td>
、それぞれを選択できますか?
たとえば、最初のフロートを左に、2 番目のフロートを右に作成したいとします。CSSだけで可能ですか?
.divE:first-child { float:left; }
.divE:last-child { float:right; }
HTML
<table id="myTbl" cellpadding="0" cellspacing="0">
<tr>
<td>
<div class="red">asdasd</div>
<div class="divE"></div>
<div class="divE"></div>
content
</td>
</tr>
</table>