gpt4 book ai didi

html - 横向和纵向媒体查询之间的区别

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

我正坐着阅读这一页

Media Query

这里说:

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

/* iPad(纵向)------------ /@media only screen and (最小设备宽度:768px)和(最大设备宽度:1024px)和 (方向:纵向){/ 样式 */}

但是这两个代码没有区别吗?这导致我使我的元素适合 fx 横向模式。然后我进入肖像模式,一切都在飞来飞去。

如何设计响应式,以便将纵向和横向模式分开?

CSS

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

.ebook-image {
width: 600px;
display: block;
margin: 0 auto;
margin-top: -30px;
}

.ebook-image img {
margin-left: 0px;
}

.header-box {
background-color: #163A4E;
height: 680px;
margin-bottom: 0px;
padding: 0px;
}

.header-text h1 {
font-weight: 900;
font-size: 40px;
line-height: 1;
text-transform: uppercase;
color: #fff;
position: relative;
left: 0px;
top: -10px;

}

.header-text h2 {
font-size: 20px;
margin-bottom: 25px;
font-weight: 900;
color: #fff;
position: relative;
left: 0px;
top: -30px;
text-align: center;
}

}

iPads (landscape) -----------
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.ebook-image {
height: 500px;
width: 590px;

}

.ebook-image img {
margin-left: -190px;
padding-top: 0px;

}
.header-box {
background-color: #163A4E;
height: 350px;
margin-bottom: 0px;
padding: 0px;
}

.header-text h1 {
font-weight: 900;
font-size: 40px;
line-height: 1;
text-transform: uppercase;
color: #fff;
position: absolute;
left: -400px;
top: 110px;

}

.header-text h2 {
font-size: 20px;
margin-bottom: 25px;
font-weight: 900;
color: #fff;
position: absolute;
left: -405px;
top: 150px;

}
}

最佳答案

查询完全不同;请注意两个媒体查询中尾随的 and (orientation : landscape)and (orientation : portrait)

这是一个 fiddle ,通过在横向或纵向模式下查看时应用不同的背景颜色来演示这些查询。 https://jsfiddle.net/dem49e87/2/show/

确保在手机上打开它并以纵向和横向模式查看。

关于html - 横向和纵向媒体查询之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39139534/

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