0%

CSS單位

rem

因應響應式網頁,在 html 預設size.

1
2
3
4
5
6
7
8
9
10
11
12
html {
font-size: 10px; /* 也可以使用percent顯示 - 10/16=62.5% */
}

body {
font-family: "Lato" sans-self;
font-weight: 400;
line-height: 1.7;
color: #777;
padding: 3rem;
box-sizing: border-box;
}