HTML div 3단 분할 모바일 1단 반응형 여백

Jmnote (토론 | 기여)님의 2018년 4월 22일 (일) 15:39 판 (새 문서: ==개요== ;HTML div 3단 분할 모바일 1단 반응형 여백 <source lang='html'> <style> .container { display: grid; grid-template-columns: 1fr 3fr 1fr; grid-gap: 10px; }...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

HTML div 3단 분할 모바일 1단 반응형 여백
<style>
.container {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-gap: 10px;
}
@media (max-width: 600px) {
  .container { display: block; }
}
.box1 { background: red; }
.box2 { background: orange; }
.box3 { background: yellow; }
</style>
<div class='container'>
    <div class='box1'>왼쪽</div>
    <div class='box2'>가운데</div>
    <div class='box3'>오른쪽</div>
</div>

2 같이 보기

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