同时设置上下左右边框:

border: 宽度 样式 颜色; 其中颜色可以省略(默认黑色),样式不能省略分别设置上右下左边框(1)

border-top: 宽度 样式 颜色;(顶部)

border-right:宽度 样式 颜色 ;(右边)

border-bottom:宽度 样式 颜色 ;(下边)

border-left: 宽度 样式 颜色;(左边)

分别设置上右下左边框(2),如果省略左则和对边(右)格式相同,如果省略下则和对边(上)格式相同,如果省略右,下,左则和 上 格式相同,

border-width:上 右 下 左;

border-style: 上 右 下 左;

border-color: 上 右 下 左;

分别设置上右下左边框(3)

border-top-width:2px ;

border-top-style: solid;

border-bottom-color:blue ;

关于样式:solid(实线),dotted(虚线)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
.box1{
width: 200px;
height: 100px;
border: 3px solid red;
}
.box2{
width: 200px;
height: 100px;
border-top:   5px solid red;
border-right: 5px solid red;
border-bottom:5px solid red ;
border-left:  5px solid red;
}
.box3{
width: 200px;
height: 100px;
border-width: 1px 2px 3px 4px;
border-style: solid dotted double solid;
border-color:  antiquewhite aqua blueviolet chartreuse;
}
</style>
</head>
<body>
<div class="box1">边框测试1</div>
<div class="box2">边框测试2</div>
<div class="box3">边框测试3</div>
</body>
</html>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。