reset.css
cssスタイルをリセットするコード
@/css/reset.css
* {
box-sizing: border-box;
margin: 0;
}
body {
font-family: 'NanumSquare', sans-serif;
color: white;
}
a {
color: inherit;
text-decoration: none;
}
button,
input,
textarea {
font-family: 'NanumSquare', sans-serif;
font-size: 16px;
}
button:focus,
button:active,
input:focus,
input:active,
textarea:focus,
textarea:active {
outline: none;
box-shadow: none;
}
ul,
ol,
li {
list-style-type: none;
padding-left: 0;
margin-left: 0;
}
h1,
p,
label {
font-size: 14px;
line-height: 1.2142857143;
color: white;
letter-spacing: 0em;
}
残りのcssは@/css/common.css
で作成されますReference
この問題について(reset.css), 我々は、より多くの情報をここで見つけました https://velog.io/@sdsdsrd/reset.cssテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol