border-width 简写属性为元素的所有边框设置宽度,或者单独地为各边边框设置宽度。
注意:只有当边框样式不是 none 时才起作用。如果边框样式是 none,边框宽度实际上会重置为 0。不允许指定负长度值。
border-width:medium|thin|thick|length|inherit;
值 | 描述 |
thin | 定义细的上边框。 |
medium | 默认值。定义中等的上边框。 |
thick | 定义粗的上边框。 |
length | 允许您自定义上边框的宽度。 |
inherit | 规定应该从父元素继承边框宽度。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style type="text/css">
p{
width: 222px;
}
.one
{
border-style: solid;
border-width: 5px
}
.two
{
border-style: solid;
border-width: thick
}
.three
{
border-style: solid;
border-width: 5px 10px
}
.four
{
border-style: solid;
border-width: 5px 10px 1px
}
.five
{
border-style: solid;
border-width: 5px 10px 1px medium
}
</style>
</head>
<body>
<p class="one">FishC.com</p>
<p class="two">FishC.com</p>
<p class="three">FishC.com</p>
<p class="four">FishC.com</p>
<p class="five">FishC.com</p>
<p><b>注释:</b>"border-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p>
</body>
</html>
FishC.com
FishC.com
FishC.com
FishC.com
FishC.com
注释:"border-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
6.0 | 3.0 | 4.0 | 9.0 |