CSS3长度单位 vw、vh(移动端自适应)
h1 {font-size: 8vw;}
(vw这个数值*当前视口的宽度)/100 = h1元素的字号 /*元素的字号单位是mm*/
vw这个数值 = (h1元素的字号*100)/当前视口的宽度
h1 {font-size: 8vw;}
(vw这个数值*当前视口的宽度)/100 = h1元素的字号 /*元素的字号单位是mm*/
vw这个数值 = (h1元素的字号*100)/当前视口的宽度
2016-03-13
background-image: url("../images/p*_bg.jpg");
background-repeat: no-repeat;
background-position: center, center;
background-repeat: no-repeat;
background-position: center, center;
2016-03-12