HTML div 왼쪽, 오른쪽 분할

(HTML div 2단 분할에서 넘어옴)

1 개요[ | ]

HTML div 왼쪽, 오른쪽 분할

2 예시[ | ]

<style>
.left-box {
  background: red;
  float: left;
  width: 50%;
}
.right-box {
  background: blue;
  float: right;
  width: 50%;
}
</style>
<div class='left-box'>왼쪽</div>
<div class='right-box'>오른쪽</div>

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}