모든 태그의 마진과 패딩을 0으로 설정정

This commit is contained in:
tuska298 2025-01-21 03:01:05 +09:00
parent 31c1c4757a
commit 84645c2827

View File

@ -1,7 +1,11 @@
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif;
margin: auto;
max-width: 38rem;
padding: 2rem;
* {
margin: 0;
padding: 0;
}
body {
width: 100vw;
height: 100vh;
padding: 10px;
box-sizing: border-box;
}