728x90
반응형
reset css를 하는 이유
브라우저마다 태그를 렌더링하는 기본 스타일이 다르고, 기본 padding,margin값들 이 적용되어 있는 부분을 초기화 하기위해
style 기본값을 0으로 만들고 list,a태그에 기본적으로 적용된 스타일들의 초기화를 위해 reset css를 해준다.
결론적으로는 크로스 브라우징을 위해 브라우저마다 다른 기본값들에 대한 차이를 없애는것이다
[ 기존에 사용하던 방법 ( css 파일 추가 ) ]
https://meyerweb.com/eric/tools/css/reset/index.html
/* 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;
}
가장 많이 사용 하는 Reset css
보통 위의 코드를 긁어와 style 파일에 붙여넣고 root파일에 import 해주었는데,
다른 방법이 있나 찾아보다가 찾은 방법을 정리합니다.
[ npm으로 설치하는 방법 ]
// yarn
$ yarn add styled-reset
// npm
$ npm i styled-reset
위처럼 설치 후,
App.js 파일에 아래처럼 적어줌
import * as React from 'react'
import { Reset } from 'styled-reset'
const App = () => (
<React.Fragment>
<Reset />
<div>Hi, I'm an app!</div>
</React.Fragment>
)
✔️ 참고
https://www.npmjs.com/package/styled-reset
https://catstanets.tistory.com/122
728x90
반응형
'REACT' 카테고리의 다른 글
[ REACT ] 컴포넌트, props 사용하기 (0) | 2022.01.05 |
---|---|
[ REACT ]JSX, JSX문법과 예제 정리 (0) | 2022.01.04 |
[ REACT ] CRA로 프로젝트 생성하기 ( Create React App ) (0) | 2021.12.31 |
[ REACT ] 작업환경 설정, 설치하기 (node.js | npm | nvm 간단정리) (0) | 2021.12.30 |
[ REACT ] 리액트 이해, 렌더링과 Virtual DOM (0) | 2021.12.27 |