码迷,mamicode.com
首页 > 其他好文 > 详细

border-radio属性

时间:2017-09-30 13:21:15      阅读:494      评论:0      收藏:0      [点我收藏+]

标签:add   body   val   分享   技术分享   bsp   效果图   html   背景   

 

boreder-radio属性是css3的新增属性,可以设置圆角的边框。
  
  <head> 
    <style type="text/css">

      *{
        margin: 0;
        padding: 0;
      }
      .roundedCorner{
        width:100px;/*宽*/
        height: 100px;/*高*/
        border-radius: 10px;/*圆角角度左上,右上,右下,左下都是10px*/
        background: deepskyblue;/*背景颜色*/
        margin: 20px auto;/*上下间距20px,左右居中*/
      }
    </style>
  </head>
  <body>
    <div class="roundedCorner"></div>
  </body>

  效果图:

技术分享

  border-radius的优势不仅仅在制作圆角的边框,还是利用border-radius属性来画圆和半圆。

  制作的方法:

  <head> 

    <style type="text/css">
      *{
        margin: 0;
        padding: 0;
      }
      .roundedCorner{
        width: 100px;/*宽*/
        height: 100px;/*高*/
        border-radius: 50%;/*圆角角度设置50%,不要设置具体数值,如果哦下面的border值大的话会变形*/
        background: deepskyblue;/*背景颜色*/
        margin: 20px auto;/*上下间距20px,左右居中*/
        border: 5px solid black;
      }
    </style>
  </head>
  <body>
    <div class="roundedCorner"></div>
  </body>

效果图

技术分享

制作半圆的方法;

  <head> 

    <style type="text/css">
      *{
        margin: 0;
        padding: 0;
      }
      .roundedCorner{
        width: 100px;/*宽*/
        height: 50px;/*高*/
        border-radius: 50px 50px 0 0;/*圆角角度*/
        background: deepskyblue;/*背景颜色*/
        margin: 20px auto;/*上下间距20px,左右居中*/

      }
    </style>
  </head>
  <body>
    <div class="roundedCorner"></div>
  </body>

效果图

技术分享

 

 

 

 

 

border-radio属性

标签:add   body   val   分享   技术分享   bsp   效果图   html   背景   

原文地址:http://www.cnblogs.com/shenshenzhijia/p/7614136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!