Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- c언어문자열
- BeautifulSoup
- DOM
- 남양주맛집
- richtext
- pipenv
- 부스트코스
- removetooltip
- 강원도속초맛집
- 정렬알고리즘
- JavaScript
- 성수동카페
- 알고리즘
- 자바
- popupmenubutton
- 노마드코더
- 건대입구맛집
- python3
- Django
- 속초여행
- 추상클래스
- 가상환경
- 상속
- 장고
- 컴퓨터과학
- 포인터
- 코딩독학
- FLUTTER
- 아스키코드
- Python
Archives
- Today
- Total
YUYANE
reset CSS 본문
Reset CSS
브라우저의 역할
HTML 언어를 번역해서 유저에게 보여준다.
대표적인 브라우저로 IE, Firefox, Chrome, Safari, Opera가 있다.
그런데, 브라우저들은 보여주기 방식에 있어서 서로 다른 기본값을 사용하고 있다
예를 들어, margin 이나 padding을 적용했을 때 브라우저마다 보이는 방식이 다름
RESET 개념의 도입
모든 브라우저에서 통일 된 화면을 볼 수 있도록, 기본값을 초기화 시킴
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;
}
input:focus {
outline: none;
}
a {
color: inherit;
text-decoration: none;
}
'Programming Languages > HTML, CSS' 카테고리의 다른 글
CSS / selector 정리 (0) | 2021.04.08 |
---|---|
Css/coolors 사이트 (색상 조합 찾기 좋음) (0) | 2021.01.04 |
Html,Css/ Table을 활용하자 (0) | 2021.01.04 |
BEM 방법론 (0) | 2020.12.10 |
:not(selector) (0) | 2020.12.10 |
Comments