:nth-of-type()
n番目の要素を指定できる
擬似クラス
1始まりなので注意
code:css
div:nth-of-type(1) {
background: yellow;
}
/* 一番目のdiv要素 */
:nth-child()
似てる