generated at
:nth-of-type()
n番目の要素を指定できる擬似クラス

1始まりなので注意
css
div:nth-of-type(1) { background: yellow; } /* 一番目のdiv要素 */


:nth-child() 似てる