CSS: 给表格的第一列和最后一列不同的样式

table td:first-child {
    width:160px;
    height:20px;
    border:solid 1px Black;
    padding:5px;
    text-align:center;
}

table td:last-child {
    width:600px;
    height:20px;
    border:solid 1px Black;
    padding:5px;
}
    原文作者:白白白
    原文地址: https://segmentfault.com/a/1190000017150214
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞