HTML div 왼쪽, 오른쪽 분할

Jmnote (토론 | 기여)님의 2015년 7월 7일 (화) 01:10 판 (새 문서: ==개요== ;HTML div 왼쪽, 오른쪽 분할 ==예시== *http://zetawiki.com/css/div-left-right-divide.html <source lang='html5'> <style> .left-box { background: red; float: lef...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}