标签:
:root {
font-size: 16px;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-device-pixel-ratio: 2) {
:root {
font-size: 18.75px;
}
}
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-device-pixel-ratio: 3) {
:root {
font-size: 20.7px;
}
}
@media screen and (min-width: 414px) {
:root {
font-size: 20.7px;
}
}
标签:
原文地址:http://www.cnblogs.com/moz-1105/p/5237942.html