border-bottom(指定下边线的样式、宽度及颜色)

border-bottom: 值;

border-bottom-style:值;

border-bottom-color: 值;

border-bottom-width:值;

如:

border-bottom: solid 1px #ffff00;

border-bottom-style: outset;

border-bottom-color: #0000ff;

border-bottom-width:15px;

border-bottom属性用于指定下边线的样式、宽度及颜色,值之间用半角空格间隔,没有先后顺序。

关于border-bottom属性的样式的值,具体可参照边线的样式。边线的宽度的值,具体可参照边线的宽度

当分别指定下边线的样式、宽度、颜色时使用以下属性:

border-bottomsolid下边线为实线
其他的值还有:groove、dotted等,详细请参照边线样式
1px下边线的宽度
使用数值可以表示边线的任意宽度,数值单位除了px,还有em、ex,详细请参照数值+单位
使用关键词指定
thin(细)、medium(普通)、thick(粗)
#ff0000下边线的颜色
除了使用颜色代码表示具体颜色之外,边线还可以指定为透明即:transparent

实例

css文件

.sample1,.sample2,.sample3{

margin:0.5em;

padding:2px;

}

.sample1 {border-bottom: solid 1px #ffff00;}

.sample2 {border-bottom: groove 10px #00ff00;}

.sample3 {border-bottom-style: ridge;

border-bottom-color: #0000ff;

border-bottom-width:15px;

}

  

链接了上述css文件的html文件

<!DOCTYPE html>

<html lang="zh">

<head>

<meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1">

<link href="material/border-bottom.css" rel="stylesheet" type="text/css" />

<title>border-bottom属性(http://wwww.manongjc.com)</title>

</head>

<body>

<div class="sample1">sample1:下边线 solid 1px #ffff00</div>

<div class="sample2">sample2:下边线 groove 10px #00ff00</div>

<div class="sample3">sample3:分别指定下边线的样式、宽度、颜色 </div>

</body>

</html>

参考阅读:http://www.manongjc.com/article/1190.html

 
05-11 14:10