728x90
반응형
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#box1{
background-color: darkcyan;
float: left;
}
#box2{
background-color: darkgreen;
float: left;
}
#box3{
background-color: dodgerblue;
float: left;
}
#box4{
background-color: darkslateblue;
clear: left;
}
</style>
</head>
<body>
<div id="box1">박스1</div>
<div id="box2">박스2</div>
<div id="box3">박스3</div>
<div id="box4">박스4</div>
</body>
</html>
728x90
반응형
'정보 > WEB' 카테고리의 다른 글
Position예제 (0) | 2022.12.28 |
---|---|
float예제2 (0) | 2022.12.28 |
3단 레이아웃 (0) | 2022.12.28 |
display속성과 margin (0) | 2022.12.28 |
표 스타일2 (0) | 2022.12.28 |