判断浏览器是否支持 rem 单位

/* 判断浏览器是否支持 rem 单位 /
@supports (font-size: 1rem) {
/
使用 rem 单位 */
.selector {
font-size: 1rem;
width: 12.5rem;
}
}

你可能感兴趣的:(css)