E:only-of-type

同じ種類の要素が無い唯一の E要素に対してスタイルが適用されます。 :first-of-type:last-of-type:nth-of-type(1):nth-last-of-type(1) と同じですが、:only-of-type の詳細度はこれらに比べて低くなります。

example

td:only-of-type { background-color: skyblue; }

source

<table>
 <tr>
  <td>セル1</td>
 </tr>
</table>

<table>
 <tr>
  <td>セル1</td>
  <td>セル2</td>
 </tr>
</table>

display

セル1
セル1セル2
上に戻る