React 프로젝트를 생성하면 기본적으로
Padding, Margin 등 CSS가 적용되어 있습니다.
또한, 브라우저마다 태그를 렌더링 하는 기본 스타일이 다릅니다.
따라서 원하는 디자인을 구현하기 위해 기본적인
CSS를 초기화 시켜주는 작업이 필요합니다. 😀
📝CSS 초기화 방법
https://meyerweb.com/eric/tools/css/reset/index.html
⦁ reset.css 파일 추가 (public 폴더에)
// reset.css
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
⦁ public / index.html 파일에 link 태그 추가
<!DOCTYPE html>
<html lang="en">
<head>
...
<link rel="stylesheet" href="%PUBLIC_URL%/reset.css" />
...
✔ link 태그를 이용해서 CSS를 적용시켜주면 끝 !
✔ 여백이 잘 제거된 모습입니다 😎
참고 문헌 :
'Front-End > React' 카테고리의 다른 글
[React] 리액트 QR 코드 생성하기 (qrcode.react) (7) | 2024.10.29 |
---|---|
[React] Zustand란? 사용하는 이유! (상태 관리 라이브러리, 사용 방법 예시) (3) | 2024.03.14 |
[React & Vue] 조건부 렌더링이란? (사용 예시, 사용 목적) (2) | 2023.07.14 |
[TypeScript] 타입스크립트란? (개념, 문법 총 정리) (0) | 2023.01.17 |
[React] 자식 컴포넌트에서 부모 컴포넌트로 데이터 전달하기 (0) | 2022.12.05 |