[Nomadecoder] Vanilla JS , CSS Challenge Day 4/14

IT/Web Programming|2021. 1. 15. 23:07

 

 

 

 Day 4  Challenge :   

 

   

 

 

 

text / item을 grid box 안으로 넣는것을 많이검색했는데

margin / flex를 꼭 이용해야하는것같다.

 

그래서 그냥 쉽게   

 

div {
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:24px;
}

이걸로 해결가능.

 

 

stackoverflow.com/questions/45536537/centering-in-css-grid#:~:text=Use%20margin%3A%20auto%20to%20vertically%20and%20horizontally%20center%20grid%20items.&text=To%20center%20the%20content%20of%20grid%20items%20you%20need%20to,margins%20to%20the%20new%20elements.

 

Centering in CSS Grid

I'm trying to create a simple page with CSS Grid. What I'm failing to do is center the text from the HTML to the respective grid cells. I've tried placing content in separate divs both inside and

stackoverflow.com

 

 

 

 바닐라 챌린지는 그래도 오늘 은 쉬웟따 다행이!

수업만 잘들엇어도 바로 가능한 숙제!

 


 

반응형

댓글()