ホームページ > 記事 > ウェブフロントエンド > css3 border-radius圆角盒子
代码如下:
<code><style> .radius{ -moz-border-radius: 15px; /* 火狐浏览器 */ -webkit-border-radius: 15px; /* 谷歌浏览器 */ border-radius:15px; width:300px; height:300px; background:#4ca2d1; } </style> <div class="radius"></div> </code>
如下图: