grid 연습
HTML
<div class="container">
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
<div class="box box5"></div>
<div class="box box6"></div>
</div>
CSS
.container{
width: 1200px;
height: 800px;
display: grid;
background: black;
grid-template-rows: repeat(4, 150px);
grid-template-columns: repeat(5, 200px);
gap: 5px 10px;
}
.box {
border-radius: 20px;
}
.box1 {
background: red;
grid-column : 1/span 2
}
.box2 {
background: orange;
grid-column: 4/ 5
}
.box3 {
background: yellow;
grid-row: 2/ span 2;
}
.box4 {
background: green;
grid-column: 3/ span 2;
}
.box5 {
background: blue;
grid-row: 3/ span 2;
}
.box6 {
background: violet;
grid-row: 3 / span 2;
grid-column: 4/ span 2;
}
Author And Source
이 문제에 관하여(grid 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cash2cash/grid-연습저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)