HTML/CSS

table CSS セルの指定 nth-child

 

特定セルの指定

 

nth-childを利用します。

 

.total_tableクラスのtableの特定セルにメダルアイコンを表示させる実装で利用しました🐱✨

    .total_table tr:nth-child(2) td:nth-child(1) {
        background-image: url('{{asset(./images/icon_1st.png')}}');
        background-repeat: no-repeat;
        background-position: left;
    }

 

  • tr:nth-child(2) td:nth-child(1) … 上から2行目の、左から1行目のセル
  • background-position: left; 背景画像(アイコン)を左寄せ

 

奇数、偶数行でセルをしま模様に指定

 

    /* 奇数行のスタイル */
    .total_table tr:nth-child(odd) , .total_table tr:nth-child(odd) {
        background-color:#f0f0f0;
    }
    /* 偶数行のスタイル */
    .total_table tr:nth-child(even), .total_table tr:nth-child(even) {
        background-color:white;
    }

 

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)