<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.box{
width:300px;
height: 390px;
background-color:pink;
border-top-style:solid;/* 线型 */
border-top-color:red;/* 上边框颜色 */
border-top-width:5px;/* 上边框粗细 */ border-bottom-style:dotted;/* 点线 */
border-bottom-color:blue;
border-left-style:dashed;/* 虚线 */
border-left-color:#467890;
/* 四个边框都一样 */
border:5px solid blue;
}
</style>
</head>
<body>
<div class="box">距离</div>
</body>
</html>
css盒子模型:
1.边框 border
border-top-style(线型):solid(实线)
dotted(点线)
dashed(虚线)
border-top-color(边框颜色)
border-top-width(边框粗细)
2.边框属性简写:
border-top:5px solid red;
特点:没有顺序限制.线型为必写项
四个边框相同的时候写法:
border:5px solid red
特点:没有顺序要求。线型为必写项