CSS Reset 최신

CHan·2023년 1월 30일
0

CSS RESET

1. 최신 css reset 소스

* {
	margin:0;padding:0;font:inherit;color:inherit;
}
*, :after, :before {
	box-sizing:border-box;flex-shrink:0;
}
:root {
	-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:100%;text-size-adjust:100%;cursor:default;line-height:1.5;overflow-wrap:break-word;-moz-tab-size:4;tab-size:4
}
html, body {
	height:100%; line-height: 1;
}
img, picture, video, canvas, svg {
	display: block;max-width:100%;
}
button {
	background:none;border:0;cursor:pointer;
}
a {
	text-decoration:none
}
table {
	border-collapse:collapse;border-spacing:0
}
ul {
    list-style: none;
}
- * (전체 선택자)를 사용해서 css를 초기화 하는 것이 브라우저의
  성능 저하를 일으켰지만 브라우저의 발전으로 사용
- body에 line-height: 1 추가
- ul에 list-style: none 추가

2. 참고 사이트

2022 CSS Reset 다시 써보기!

- 간단하게 소스만 적었지만 참고 사이트를 읽어보자!
profile
Hello World!

0개의 댓글