[CSS] 화면 꽉 차게 & 스크롤 없애기

one_jeje·2022년 7월 20일
0

1. 작성코드

// 화면 꽉차게
width: 100vw;
height: 100vh;

// 스크롤 없애기
position: fixed;
overflow: hidden;

0개의 댓글