css3内凹圆角边框 在HTML中如何把块的边框做成圆角?

在HTML中如何把块的边框做成圆角?html边框圆角的实现代码:css3中的border-radius;table{border-radius:5pxoverflow:hidden};如果需要单独针对

在HTML中如何把块的边框做成圆角?

html边框圆角的实现代码:

css3中的border-radius;

table{border-radius:5pxoverflow:hidden};

如果需要单独针对某一个角设置为圆角可以使用下面代码:

border-top-left-radius:5em

border-top-right-radius:5em

border-bottom-right-radius:5em

border-bottom-left-radius:5em