Border - logaegae/project_study GitHub Wiki
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style >
/*종류
border-top
border-left
border-right
border-bottom
*/
.box { width: 100px;
height: 100px;
border-width: 1px 2px 3px 4px;
/*top부터 시계방향으로 지정*/
border-color: red orange green blue;
border-radius: 10px 20px 30px 40px;
/*곡선테두리, css3사용, IE9이하는 호환안됨*/
border-style : solid dotted dashed double;}
/*선 종류 4가지*/
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>