最大宽度与最小宽度:移动优先的视角
当涉及到使用媒体查询时,最小宽度之间的选择-width 和 max-width 经常出现。虽然 min-width 在移动优先设计中更为普遍,但了解这两种方法背后的基本原理至关重要。
移动优先设计和 min-width
原理移动优先设计的背后是从为移动设备量身定制的样式开始,并逐步增强针对更大屏幕的布局。 min-width 媒体查询遵循此流程。
使用 min-width,默认样式适用于移动设备。后续查询逐渐针对更宽的屏幕:
<code class="css">body { /* Default mobile styles */ } @media screen and (min-width: 480px) { /* Styles for screens 480px and wider */ } @media screen and (min-width: 800px) { /* Styles for screens 800px and wider */ }</code>
桌面优先设计和最大宽度
相反,桌面优先设计从桌面和使用的样式开始max-width 查询以适应较小的屏幕:
<code class="css">body { /* Default desktop styles */ } @media screen and (max-width: 800px) { /* Styles for screens 800px and narrower */ } @media screen and (max-width: 480px) { /* Styles for screens 480px and narrower */ }</code>
自定义导航为 360 像素或更小
对于宽度为 360 像素或更小的自定义导航定位设备,如果它是移动优先设计的孤立例外,则可以使用 max-width:
<code class="css">body { /* Default mobile styles (also applies to 361-479px) */ } @media screen and (max-width: 360px) { /* Custom styles for screens 360px and narrower */ } @media screen and (min-width: 480px) { /* Styles for screens 480px and wider */ }</code>
但是,通常建议优先考虑移动优先原则并使用 min-width 进行渐进增强,方法是:包括 360px 异常作为辅助查询,或者将其样式设置为基线并覆盖它以获得更宽的屏幕。
以上是最小宽度或最大宽度:哪个是移动优先设计的更好选择?的详细内容。更多信息请关注PHP中文网其他相关文章!