티스토리 뷰
브라우저는 기본적으로 제공하는 css style이 있다.
기본적으로 제공하는 css style을 detault style이라고 한다.
가끔 css를 줄때 margin을 주지 않았는데 margin이 들어가 있는 경우가 있었는데
이는 브라우저에서 기본적으로 제공하는 default style 때문이다.
그래서!! css reset하는 방법을 작성해 놓고자 한다!
아주 유용하게 사용될 듯한
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;
}
위 코드를 src 폴더 안에 reset.css 파일을 만들어 붙여놓고,
index.js에서 reset.css 파일을 import만 해주면 된다!
import "./reset.css";
'내가 쓸 유용한 잡지식' 카테고리의 다른 글
YouTube Api Key 만들기 (0) | 2024.02.25 |
---|---|
git branch 이름 수정 (삭제) (0) | 2024.02.23 |
2024. 02. 04 git commit 메시지 작성하는 방법 (0) | 2024.02.04 |
2024. 02. 04 git commit & push (0) | 2024.02.04 |
2024.02.04 git branch 생성 & 생성과 이동 명령어 & 기존 Commit history 삭제 (0) | 2024.02.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Fetch와 Axios 의 장단점
- 유효성검사
- nextjs 토큰 만료처리하기
- Warning: A component is changing an uncontrolled input to be controlled.
- readme 이미지 추가 방법
- git cache
- axios 설치하기
- 별점 색채우기
- readme 작성 방법
- Warning: Each child in a list should have a unique "key" prop.
- 별점만들기
- styled component 조건부 사용방법
- axios instance 작성하기
- 유효성검사 css
- simple Icon 사용방법
- axiosinstance 사용 시 토큰 사용 법
- 영화 별점
- Warning: validateDOMNesting(...): <li> cannot appear as a descendant of <li>
- 에러모음집
- readme 역할
- axios CRUD
- readme작성해보기
- readme 작성해야 하는 이유
- styled component GlobalStyle 사용방법
- axios 사용하기
- 영화별점만들기
- styled component 사용방법
- styled component 설치방법
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함