【FormBridge】ラベルの背景色の変更方法について

ありがとうございます。

おっしゃる通り、div要素ですね。

rowに対して「:nth-of-type」で何行目か

その配下のdivに対して「:nth-of-type」で何番目かを指定することでできます。

/* 1行目の1番目のdiv */
.row:nth-of-type(1) div:nth-of-type(1) {
    background-color: #ff00ff;
}

/* 1行目の2番目のdiv */
.row:nth-of-type(1) div:nth-of-type(2) {
    background-color: #0000ff;
}

/* 2行目の1番目のdiv */
.row:nth-of-type(2) div:nth-of-type(1) {
    background-color: #00ffff;
}