티스토리 뷰
'웹 브라우저'마다 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;
}
'CSS' 카테고리의 다른 글
탭메뉴 있는 [팝업] : 맥 CSS 만들기 (0) | 2022.04.17 |
---|---|
CSS 셋팅 - 폰트 font 설정 (0) | 2022.04.17 |
CSS 셋팅 - 공통 common 설정 (0) | 2022.04.17 |
CSS 선택자 공부할 때 추천 - [게임] CSS Speedrun (0) | 2022.02.06 |
웹 표준 사이트를 만들자 - 컨텐츠 레이아웃 (0) | 2022.02.03 |
댓글
© 2018 webstoryboy