CSS 스타일 리셋을 위한 준비된 라이브러리
종종 여백뿐만 아니라 다른 기본 값들도 리셋하는 것이 편리합니다. 불필요한 모든 값을 리셋하는 이미 준비된 리셋 파일들이 존재합니다. 인기 있는 것 중 하나는 에릭 메이어의 스타일 리셋입니다:
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 스타일 없이, 기본 상태의 페이지 외관을 확인해 보세요.