表格样式整理

<style>
        .table{
        border:1px #ddd solid; border-collapse:collapse;/*设置边框 合并边框*/
        }
        .table th,.table td{
        border:1px #ddd solid; padding:15px;
        }
        .table tr:nth-of-type(even){/*隔行变色*/
        background-color:#ffffe4;
        }
    </style>
发布了25 篇原创文章 · 获赞 0 · 访问量 592

猜你喜欢

转载自blog.csdn.net/luyundesign/article/details/103763189