210618 UIUX WebDesign CSS 연습_42_1(index.html -> style.css)

ITisIT210·2021년 6월 20일
0

CSS

목록 보기
45/93
post-thumbnail
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
}

a {
    color: #000;
    text-decoration: none;
}

body {
    font-family: '맑은 고딕';
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

#container {
    width: 1200px;
}
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글