김 양의 멋따라 개발따기

22.09.03.TIL/알면 재미 있는 CSS 본문

css

22.09.03.TIL/알면 재미 있는 CSS

개발따라김양 2022. 9. 3. 22:09

1. background img 3총사

 background-position: center;
 background-size: cover;
 background-image:

2. 박스 안 item 정렬

 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: row;

3. 가로스크롤

display: flexbox;
overflow-x: scroll;
overflow-y: hidden;

  ::-webkit-scrollbar {
    display: none;
  }