gpt4 book ai didi

css - 将 Stylus (nodejs) .styl 文件编译为 2 个不同的 css 文件(移动和桌面)

转载 作者:太空宇宙 更新时间:2023-11-03 19:08:59 24 4
gpt4 key购买 nike

是否可以将单个手写笔文件编译成 2 个不同的 css 文件,例如对于 ipad 网络应用程序,我对 -moz 等 css 在线 webkit 不感兴趣,所以一个针对移动设备进行了优化,另一个针对跨浏览器应用程序进行了优化?

谢谢

最佳答案

我相信简短的回答是给定一个 .styl 文件,您将输出一个相应的 .css 文件。但是,有一些方法可以实现您的目标。你可以使用 CSS3 media queries并让相同的样式表根据屏幕尺寸产生不同的样式。其次,您可以使用 @import 语句通过执行类似这样的操作来实现您几乎需要的功能

shared.styl

//Put your default shared styles here

screen.styl

@import "shared"
//Put your desktop web app overrides here

并在mobile.styl

@import "shared"
//put your mobile optimized overrides here

关于css - 将 Stylus (nodejs) .styl 文件编译为 2 个不同的 css 文件(移动和桌面),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9098473/

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