Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="float 예시">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="blue"></div>
  <div class="green"></div>
  <div class="red"></div>
</body>
</html>
 
div {
  width:100px;height:100px;
  border:1px solid gray;
  font-size:0.7em;
}
.blue {  
  background-color:blue;
}
.green {
  float:left;
  background-color:green;
  margin-left:20px;
}
.red {
  background-color:red;
  left:20px;
  top:30px;
}
/* 설명: green div가 float처리가 되었기 때문에 red div 
는 green이 없는것처럼 blue div 밑에 쌓이게 됩니다. */
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Jasonvalleypro
0viewers