Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

우리는 Calisthenics 입니다!

[React] styled-components를 활용한 css 리셋 본문

Frontend/React

[React] styled-components를 활용한 css 리셋

日常茶飯事 2021. 7. 23. 23:54

프로젝트를 시작하는 단계에서 frontend 전체적으로 css 리셋을 진행해줘야한다.

 

reset을 해주는 이유


- 사용자들은 특정 브라우저만 사용하는 것이 아니고 다양한 브라우저를 사용합니다.

- 각 브라우저에서 제공하는 스타일들은 표준화 되어 있지 않아 각 브라우저마다 출력해주는 모양이 다를 수 있습니다.

- 개발 단계에서 의도했던 대로 모든 사용자의 화면에서 동일하게 출력해주기 위해 초기화(reset)을 해야합니다.

 

styled-components를 활용한 css 리셋


react에서 style을 적용하기위해 자주 사용되고 이번 프로젝트에서 사용하게 될 styled-components를 활용하여 css리셋을 해보겠습니다.

 

1. GlobalStyles.js 생성 후 reset 코드 작성

 

import reset from 'styled-reset';
import { createGlobalStyle } from 'styled-components';

const globalStyles = createGlobalStyle`
    ${reset}
    *{
      margin: 0;
      padding: 0;
      list-style: none;
      text-decoration: none;
      box-sizing: border-box;
    }
    body, html {
      margin: 0;
      padding: 0;
      font-size: 16px;
    }
    button {
      background: none;
      color: inherit;
      border: none;
      cursor: pointer;
      outline: inherit;
    }
    
    a {
      color: inherit;
      text-decoration: none;
    }
    
    li {
      list-style: none;
    }
    
    input:focus {
      outline: none;
    }
`;

export default globalStyles;

 

 

2. 해당 파일을 App.js(root)에 import 후 적용

import React from 'react';
import { BrowserRouter, Route } from 'react-router-dom';
import styled from 'styled-components';
import Home from './features/home/Home';
import GlobalStyles from './GlobalStyles';

const Wrapper = styled.div`
  background-color: rgba(246, 245, 253, 1);
`;

function App() {
  return (
      <Wrapper>
        <GlobalStyles />
        <BrowserRouter>
          <Route path="/" exact component={Home} />
        </BrowserRouter>
      </Wrapper>
    </StylesProvider>
  );
}

export default App;

 

이렇게 해주면 css 리셋이 됩니다😀