<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>边框</title>
<style>
.box{
width: 100px;
height: 100px;
border: 1px dashed;
border-radius: 50px;
}
.main{
width: 100px;
height: 100px;
border-top: 1px solid red;
background-color: #ccc;
border-left: 1px solid blue;
}
button{
border:none;
}
.shadow{
width: 300px;
height: 40px;
box-shadow: 0px 6px 30px #ccc inset;
/*border: 1px solid #ccc;*/
}
</style>
</head>
<body>
<div class="box"></div>
<div class="main"></div>
<button>登录</button>
<div class="shadow"></div>
</body>
</html>