gpt4 book ai didi

asp.net - Bootstrap 多分辨率所有布局内联媒体查询 CSS 用于响应式设计,包括 Android iPhone 和 Web asp.net

转载 作者:行者123 更新时间:2023-12-01 22:25:44 28 4
gpt4 key购买 nike

我已经完成了一个网站,它现在在浏览器中运行良好。我被要求使其与 Android、iPhone、iPad、平板电脑和网络等兼容。我正在使用 bootstrap asp.net。

现在我正在尝试,但找不到任何答案。我正在使用这些内联媒体查询

@media screen and (min-width:0px) and (max-width:320px){/*Any css will be defined here*/}
@media screen and (min-width:321px) and (max-width:480px){/*Any css will be defined here*/}
@media screen and (min-width:481px) and (max-width:540px){/*Any css will be defined here*/}
@media screen and (min-width:541px) and (max-width:775px){/*Any css will be defined here*/}
@media screen and (min-width:768px) and (max-width:783px){/*Any css will be defined here*/}
@media screen and (min-width:776px) and (max-width:1536px){/*Any css will be defined here*/}
@media screen and (min-width:1537px){/*Any css will be defined here*/}

但在某些 iPad 中,不应用 CSS。现在我的问题是,@media 覆盖所有(Android、iPhone、平板电脑和 Web 等)CSS 的标准分辨率和方向是什么?

最佳答案

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media only screen
and (-webkit-min-device-pixel-ratio : 1.5),
and (min-device-pixel-ratio : 1.5) {
/* Styles */
}

这就是我所使用的,它几乎适用于所有事情。

关于asp.net - Bootstrap 多分辨率所有布局内联媒体查询 CSS 用于响应式设计,包括 Android iPhone 和 Web asp.net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18416258/

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