전체 글

.
Frontend

CSS 세로로 글쓰기

방법 1: position: absolute; + transform: rotate(); .parent { display: relative; } .child { position: absolute; transform: rotate(-90deg); top: 50; left: 50px; } rotate하면 parent범위를 넘어서 위치가 많이 바뀜 조정하기 어려움 방법 2: position:absolute; + writing-mode: vertical-rl; 더보기 CSS syntax: writing-mode: horizontal-tb | vertical-rl | vertical-lr ; .parent { position: relative; } .child { position: absolute; writing-..

Frontend

Grid template minmax, auto-fill, auto-fit

repeat(, ) 반복할 횟수(n)와 사이즈를 받음 size에 단위(fr)을 쓰면 알아서 빈공간 채워줌 minmax(,) min-width, max-height 와 비슷 반응형 웹페이지를 만들때 사용 웹페이지가 resize될 때 최소값을 줌으로 레이아웃 유지 최대값은 fr을 써서 넓은 화면에서 빈공간 없도록 함 minmax 사용 안했을 경우 100px로 최솟값은 유지하지만 넓은 화면에서 오른쪽 빈 공간 발생 빈공간 채우기위해 1fr로 하니 좁은 화면에서 찌그러져서 레이아웃 망가짐 내용 overflow될 가능성 많음 minmax로 최솟값을 유지하면서 꽉채움 그러나 좁은 화면에서 최솟값때문에 스크롤 발생 자동으로 줄바꿈되길 원할 때 auto-fill, auto-fit을 쓰면 됨 auto-fit 반복할 횟수..

비비빅B
어제의 최선