gpt4 book ai didi

css - 基于 ionic platform.height 的条件 SCSS

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

有没有办法让scss代码响应平台高度?

在 ionic 中,我得到的平台高度如下:

this.platform.height()

我的 app.core.scss 文件中有一个类,如果平台高度大于 480,我希望将 max-width 设置为 100%,如果平台高度大于 480,则设置为 50%高度 <=480

最佳答案

@Bill:首先尝试媒体查询。但是平台高度是什么意思?这是设备屏幕高度吗?

@media screen and (max-height: 480px){
.CLASS-TO-BE-SET {
width: 50%;
}
}

@media screen and (min-height: 481px){
.CLASS-TO-BE-SET {
width: 100%;
}
}

关于css - 基于 ionic platform.height 的条件 SCSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38436601/

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