美文网首页
table圆角边框

table圆角边框

作者: arik2020 | 来源:发表于2018-06-29 17:39 被阅读0次

    table {

    width: 100%;

    text-align: center;

    border-collapse: separate;

    border-spacing: 0;

    font-weight: bold;

    font-size: 0.87rem;

    color: #626262;

    }

    table tr th,

    table tr td {

    padding: 5px;

    border-right: 1px solid #333;

    border-bottom: 1px solid #333;

    }

    table tr th:first-child,

    table tr td:first-child {

    border-left: 1px solid #333;

    }

    table tr:first-child th:first-child {

    background: #333;

    color: #fff;

    border-left: 1px solid #333;

    border-right: 1px solid #333;

    }

    table tr:first-child th:first-child {

    border-top-left-radius: 6px;

    }

    table tr:first-child th:last-child {

    border-top-right-radius: 6px;

    }

    table tr:last-child td:first-child {

    border-bottom-left-radius: 6px;

    }

    table tr:last-child td:last-child {

    border-bottom-right-radius: 6px;

    }

    相关文章

      网友评论

          本文标题:table圆角边框

          本文链接:https://www.haomeiwen.com/subject/hjoayftx.html