티스토리 뷰

HTML_CSS/CSS Battle

1-2. Carrom

LHOIKTN 2021. 10. 14. 10:15

<div id='wrap'>
  <div id='item1' class='item'></div>
  <div id='item2' class='item'></div>
  <div id='item3' class='item'></div>
  <div id='item4' class='item'></div>
</div>



<style>
  *{
    margin: 0;
    padding:0;
  }
  #wrap{
    width:100%;
    height:100%;
    padding:50px 50px;
    background:#62374e;
    display: grid;
  	grid-template-columns: 50px 50px 50px 50px 50px 50px 50px 50px;
  	grid-template-rows: 50px 50px 50px 50px 50px 50px;
  }
  
  .item{
    background:#fdc57b;
  }
  
  #item1{
      grid-column-start: 1;
      grid-row-start: 1;
  }
  
  #item2{
      grid-column-start: 6;
      grid-row-start: 1;
  }
  
  #item3{
      grid-column-start: 1;
      grid-row-start: 4;
  }
  
  #item4{
      grid-column-start: 6;
      grid-row-start: 4;
  }
  
  
  

  
</style>

<!-- OBJECTIVE -->
<!-- Write HTML/CSS in this editor and replicate the given target image in the least code possible. What you write here, renders as it is -->

<!-- SCORING -->
<!-- The score is calculated based on the number of characters you use (this comment included :P) and how close you replicate the image. Read the FAQS (https://cssbattle.dev/faqs) for more info. -->

<!-- IMPORTANT: remove the comments before submitting -->

 

728x90

'HTML_CSS > CSS Battle' 카테고리의 다른 글

1-6. Missing Slice  (0) 2021.10.14
1-5. Acid Rain  (0) 2021.10.14
1-4. Ups n Downs  (0) 2021.10.14
1-3. Push Button  (0) 2021.10.14
1-1. Simply Square  (0) 2021.10.14
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
글 보관함