ホームページ  >  記事  >  ウェブフロントエンド  >  css3 border-radius圆角盒子

css3 border-radius圆角盒子

WBOY
WBOYオリジナル
2016-06-01 09:53:281754ブラウズ

代码如下:
 

<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>


如下图:

css3 border-radius圆角盒子

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。