티스토리 뷰

'웹 브라우저'마다 default 값이 달라서 스타일이 다르게 적용되기 때문에 동일한 css 적용을 위해  default 값 초기화

@charset "UTF-8";

/* 여백 초기화 */
body,
div,
dl,
dt,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
button,
figure,
figcaption {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 시멘틱 태그 초기화 */
article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section {
	display: block;
  box-sizing: border-box;
}

/* 폰트 초기화 */
body,button,input,
select,table,textarea {
    color: #222;
    font-family: 'NexonLv1Gothic','GmarketSans', 'AppleSDGothicNeo-Regular', 'Malgun Gothic', '맑은 고딕', dotum, 돋움;
}

/* 링크 초기화 */
a {color: #222; text-decoration: none;}

/* 목록 초기화 */
dl,ul,li,ol,menu {list-style: none;}

/* 스타일 초기화 */
em, address { font-style: normal;}
img {width: 100%; vertical-align: top;}

/* 테두리 초기화 */
img, fieldset, button {border: 0;}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
댓글
© 2018 webstoryboy