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

adius,就是半径的意思。用这个属性可以很容易做出圆角效果,当然,也可以做出圆形效果。原理很简单,“正方形的内切圆的半径等于正方形边长的一半”。下面就做一个红色的圆。

工具/原料

  • Adobe Dreamweave 软件

方法/步骤

  • 语法:

    border-radius : none | <length>{1,4} [ / <length>{1,4} ]?

     

    相关属性: border-top-right-radius , border-bottom-right-radius , border-bottom-left-radius , border-top-left-radius 

  • 取值:

     

     

    <length>:

    由浮点数字和单位标识符组成的长度值。不可为负值。

    border-top-left-radius:

    由浮点数字和单位标识符组成的长度值。不可为负值。

  • 说明:

     

    第一个值是水平半径。

    如果第二个值省略,则它等于第一个值,这时这个角就是一个四分之一圆角。

    如果任意一个值为0,则这个角是矩形,不会是圆的。

    值不允许是负值。 

    在HTML中如何把块的边框做成圆角
  • 在Adobe Dreamweave 软件里写如以下代码:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

    <title>在HTML中如何把块的边框做成圆角</title>

    <style type="text/css">

    .a {

       

        border: 1px solid #000;

        border-top-left-radius: 10px;

        border-top-right-radius: 10px;

    border-bottom-left-radius: 10px;

    border-bottom-right-radius: 10px;

    height:200px;

    width:500px;

    padding:20px;

    }

    </style>

    </head>

     

    <body>

    <p class="a">

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

    </p>

    </body>

    </html>

    在HTML中如何把块的边框做成圆角
  • 样式注释

     

    各个边角的样式分开显示:

    border-top-left-radius: 10px;左上部边框圆角10个像素

    border-top-right-radius: 10px;右上部边框圆角10个像素

    border-bottom-left-radius: 10px;左下部边框圆角10个像素

    border-bottom-right-radius: 10px;右下部边框圆角10个像素

    全部边角一个样式:border-radius: 10px;所有边框圆角10个像素

     
posted @ 2015-05-26 16:01  疯子110  阅读(4953)  评论(0编辑  收藏  举报