将文本颜色应用于HTML列

将文本颜色应用于HTML列

本文介绍了将文本颜色应用于HTML列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! < table> < colgroup> < col style = color:green /> < col style = background-color:green /> < col class = char /> < / colgroup> < tr> < th>小数< / th> < th>十六进制< th>字符< th < / tr>< / table> 我可以不要为我的生活弄清楚为什么十进制不是绿色的! 我需要整列都为绿色字体,出于某些原因背景颜色起作用。 是 我需要能够为每列应用不同的颜色。解决方案 th在tr内,因此它没有采用字体颜色。 这是我的解决方案,这不是一个完美的解决方案,但不必添加单个类。 th:第一个孩子{颜色:绿色;} th:nth-​​child(2){颜色:黄色;} < table> < colgroup> < col style = color:green /> < col style = background-color:green /> < col class = char /> < / colgroup> < tr> < th>小数< / th> < th>十六进制< th>字符< th < / tr>< / table><table> <colgroup> <col style="color: green"/> <col style="background-color:green"/> <col class="char"/> </colgroup> <tr> <th> Decimal </th> <th> Hex </th> <th> Char </th> </tr></table>I can't figure out for the life of me why Decimal is not in green!I need the entire column to be in green font, background-color works for some reason.Is there a way to do this without adding a class to every tr?I need to be able to apply a different colour to each column. 解决方案 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;}<table> <colgroup> <col style="color: green" /> <col style="background-color:green" /> <col class="char" /> </colgroup> <tr> <th> Decimal </th> <th> Hex </th> <th> Char </th> </tr></table> 这篇关于将文本颜色应用于HTML列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-06 01:06