이번 프로젝트에서는 CSS-in-JS의 대표적인 라이브러리인 styled-components
사용해 CSS 스타일링을 할 것이다. styled-components
를 사용하면 클래스명이나 아이디명을 작명할 필요가 없다. styled components를 할당할 변수명을 작명해야하긴 하지만.. 바닐라 css에 비하면 클래스명 중복을 신경 쓰지 않아도 돼서 편리하다.
그리고 css 파일이 필요없어서 관리하는 파일수를 줄일 수 있어서 좋다. js파일 내에서 JSX 코드와 함께 스타일 코드를 작성하기 때문에 스타일 적용 및 수정 작업하기에 용이하다. 또한 라이브러리 내에서 지원하는 문법들이 있어 바닐라 css보다는 스타일을 재사용하고 효율적으로 사용하기에도 좋을 것이다. 이러한 이유로 해당 라이브러리를 사용하기로 결정했다.
npm i styled-components
src/styles/GlobalStyles.js
import { createGlobalStyle } from "styled-components";
const GlobalStyles = createGlobalStyle`
* {
box-sizing: border-box;
}
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 {
font-family: 'Noto Sans KR', sans-serif;
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;
}
a {
text-decoration: none;
color: inherit;
}
button {
background: transparent;
cursor: pointer;
}
`;
export default GlobalStyles;
css 초기화 참고
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import GlobalStyles from "./styles/GlobalStyles";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<GlobalStyles />
<App />
</React.StrictMode>
);