Front-End/React

[React] 리액트 CSS 초기화란? (CSS Reset, 여백 제거)

현기 2023. 10. 12. 16:47

React 프로젝트를 생성하면 기본적으로

Padding, Margin 등 CSS가 적용되어 있습니다.

또한, 브라우저마다 태그를 렌더링 하는 기본 스타일이 다릅니다.

 

따라서 원하는 디자인을 구현하기 위해 기본적인

CSS를 초기화 시켜주는 작업이 필요합니다. 😀

 


📝CSS 초기화 방법

https://meyerweb.com/eric/tools/css/reset/index.html

 

CSS Tools: Reset CSS

CSS Tools: Reset CSS The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. The general reasoning behind this was discussed in a May 2007 post, if you're inter

meyerweb.com

 

⦁ 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를 적용시켜주면 끝 !

 


 

여백이 잘 제거된 모습입니다 😎

 

 


참고 문헌 :