Apply text color to HTML column

后端 未结 4 1942
感动是毒
感动是毒 2021-01-20 17:39



        
4条回答
  •  迷失自我
    2021-01-20 18:01

    th is inside tr, hence its not taking the font color.

    Here is my solution, Its Not a perfect solution, but will not have to add individual classes .

    th:first-child {
      color: green;
    }
    
    th:nth-child(2) {
      color: yellow;
    }
    Decimal Hex Char

提交回复
热议问题