CSS 디자인 전 모든 태그들을 초기화하는 코드
@charset "UTF-8";
/*reset*/
* {margin: 0; padding: 0; box-sizing: border-box;}
a {text-decoration: none; color: #242424;}
ul {list-style: none;}
h1 {margin: 0;}
html {
font-size: 0.625em;
}
body {
font-family: Arial, "맑은 고딕", sans-serif; line-height: 1;
color: #242424;
overflow-x: hidden;
}
img {border: none;}
button {background: none; border: none;}
'공부 스걱스걱 > 웹' 카테고리의 다른 글
[웹디자인] 첫 웹디자인 (0) | 2020.12.17 |
---|---|
[웹디자인] 와이어프레임 만드는 사이트 (0) | 2020.12.17 |
[CSS] 태그 안보이게 하기 (0) | 2020.12.17 |
[CSS] float 해제 (0) | 2020.12.17 |
[웹프로그래밍] Servlet (0) | 2020.12.14 |