CSS

[CSS] Reset for Modern CSS

moyanglee 2023. 10. 31. 09:00

프로젝트 시작전에 항상 적용시키는 CSS reset코드이다.
Andybell의 것을 약간 변형시켰다.

 

* {
	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;
	overflow-x: hidden;
	overflow-y: scroll;
}
::-webkit-scrollbar {
	display: none;
}
html,
body {
	height: 100vh;
}
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;
}
li {
	list-style: none;
}