border-bottom-width 属性设置元素的下边框的宽度。
注意:只有当边框样式不是 none 时才起作用。如果边框样式是 none,边框宽度实际上会重置为 0。不允许指定负长度值。
border-bottom-width:medium|thin|thick|length|inherit
值 | 说明 |
medium | 默认值。定义中等的下边框。 |
thin | 定义细的下边框。 |
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-bottom-width: 15px
}
.two
{
border-style: solid;
border-bottom-width: thin
}
</style>
</head>
<body>
<p class="one"><b>注释:</b>"border-bottom-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p>
<p class="two">www.fishc.com - 鱼C工作室</p>
</body>
</html>
注释:"border-bottom-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。
www.fishc.com - 鱼C工作室
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
6.0 | 3.0 | 4.0 | 9.0 |