在HTML中如何把塊的邊框做成圓角?
HTML邊框圓角的實現(xiàn)代碼:
css3中的border-radius;
table{border-radius:5px;overflow:hidden};
如果需要單獨針對某一個角設(shè)置為圓角可以使用下面代碼:
border-top-left-radius:5em;
border-top-right-radius:5em;
border-bottom-right-radius:5em;
border-bottom-left-radius:5em;