隔行显示颜色

隔行显示颜色可以使用css选择器,格式如下:

:nth-child()

例如,将表格中的偶数行颜色设置为pink:

    <style>
        table tr:nth-child(2n)
        {
            background: pink;
        }
    </style>

运行结果:
这里写图片描述

猜你喜欢

转载自blog.csdn.net/weixin_38052444/article/details/81660860