
cssborder-bottom-width属性值
thin:细的下边框;
medium:中等的下边框(默认值);
thick:粗的下边框;
length:允许您自定义下边框的宽度;
inherit:从父元素继承边框宽度。
语法格式:
border-bottom-width:thin/medium/thick/length/inherit;
注意:元素必须有边框才可以改变宽度(border-bottom-width属性单独使用没有效果.,要先使用border-style属性设置样式)。
实例
<!doctypehtml>
<html>
<head>
<metacharset="UTF-8">
<title>cssborder-bottom-width属性笔记</title>
<style>
#bbw{
border-style:solid;
border-bottom-width:10px;
}
</style>
<head/>
<body>
<pid="bbw">cssborder-bottom-width属性演示</p>
</body>
</html>

本文转载自中文网

本文转载自中文网
如需转载,请注明文章出处和来源网址:http://www.divcss5.com/jiqiao/j53919.shtml