- Destyle.css 적용
- Eric Meyer’s Reset CSS : 모든 스타일을 초기화하는 CSS https://meyerweb.com/eric/tools/css/reset/
- Normalize.css : 스타일 일부는 남겨두고 표시 방식을 통일하는 CSS https://github.com/necolas/normalize.css
CSS Tools: Reset CSS
CSS Tools: Reset CSS The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. The general reasoning behind this was discussed in a May 2007 post, if you're inter
meyerweb.com
GitHub - necolas/normalize.css: A modern alternative to CSS resets
A modern alternative to CSS resets. Contribute to necolas/normalize.css development by creating an account on GitHub.
github.com
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;
}
'Programming > HTML & CSS' 카테고리의 다른 글
[HTML] 의미 없는 텍스트를 만들어 주는 사이트 - 로렘 입숨(Lorem Ipsum) (9) | 2024.11.12 |
---|---|
웹 페이지에 구글 지도 삽입하기 (구글맵 삽입 방법, 구글맵 반응형) (0) | 2024.03.18 |
[CSS] Background의 모든 것 (image, color, size, repeat, position, attachment) (0) | 2024.03.13 |
[HTML] 이미지맵 태그 사용법(map,area) (0) | 2024.02.28 |
[HTML] HTML 자주쓰는 태그, 마크업 (2) | 2024.02.22 |