Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter09 : margin 본문

WEB.CSS

chapter09 : margin

GAWON 2023. 5. 18. 09:37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
/*
margin : 바깥 여백 ( border 바깥쪽 여백)
1)margin-top
2)margin-bottom
3)margin-left
4)margin-right
5)margin
(1) margin : 5px                상하좌우 5px
(2) margin : 5px 10px               상하 5px 좌우10px
(3) margin : 5px 10px 20px              상하 5px 좌우10px 하20px
(4) margin : 5px 10px 20px 30px             상하 5px 좌우10px 하20px 좌30px
*/

div{
width: 500px;
border : 1px solid black;
}

</style>
</head>
<body>

<div style="margin: auto; background-color: fuchsia; ">
margin auto;
</div>
<br>
<div style="margin-left:20px ">
margin-left:20px
</div>
</body>
</html>

'WEB.CSS' 카테고리의 다른 글

chapter11 : text  (0) 2023.05.18
chapter10 : box_model  (0) 2023.05.18
chapter08 : padding  (0) 2023.05.18
chapter07 : border  (0) 2023.05.18
chapter06 : background  (0) 2023.05.18