gpt4 book ai didi

css - 更少地设置响应式样式表?

转载 作者:太空宇宙 更新时间:2023-11-04 03:47:22 25 4
gpt4 key购买 nike

我想设置一个 react 灵敏的皮肤,减少起诉。但我想在移动设备上使用 rems,在桌面设备上使用 px。

我该怎么做?

谢谢

最佳答案

因为你用得少了,你不一定需要区分它们,你可以通过混合使用回退符号:

// the size of your base element
@base-size: 16px;

div {
.font-size(18px);
}

.font-size(@size){
font-size: unit(@size,px);
font-size: unit(@size/@base-size,rem);
}

编译为:

div {
font-size: 18px;
font-size: 1.125rem;
}

关于css - 更少地设置响应式样式表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23906920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com