728x90
반응형
reset CSS (브라우저 기본 스타일 제거)
기본적으로 적용되는 브라우저 기본 스타일을 제거하고 싶을때 사용
Reset CSS 파일을 만들어줘야 한다.
아래 사이트에서 코드 복사하거나 내가 올려둔 코드를 복사하여 css 파일에 import 하면 적용된다.
@import "reset.css";
파일이름 : 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;
}
반응형
'프론트엔드 개발 > HTML CSS' 카테고리의 다른 글
깃허브 페이지 - Publishing on Github Pages (0) | 2021.09.25 |
---|---|
CSS : box-sizing: border-box; (0) | 2021.09.21 |
CSS Hack : 정확히 중앙에 위치 시키기 (space-between 대신) (0) | 2021.09.21 |
VSC(Visual Studio Code) HTML 단축키 모음 (0) | 2021.09.21 |
HTML/CSS 유용한 사이트 / 크롬 확장도구 모음 (0) | 2021.09.21 |