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

2025-10-30 03:41:13

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

工具/原料

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 {

    background-color: #c7dec6;

    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中如何把块的边框做成圆角

</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个像素

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢