table tr td圆角

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_25391785/article/details/87974791

 css样式:

        table tr:last-child td:first-child {
            border-bottom-left-radius: 12px;
        }

        table tr:last-child td:last-child {
            border-bottom-right-radius: 12px;
        }

		table tr:first-child td:first-child {
            border-top-left-radius: 12px;
        }

        table tr:first-child td:last-child {
            border-top-right-radius: 12px;
        }

效果图:

猜你喜欢

转载自blog.csdn.net/qq_25391785/article/details/87974791