【发布时间】:2023-03-19 21:36:01
【问题描述】:
我正在尝试仅更改移动屏幕尺寸的标题背景颜色。以下操作无效。
理想情况下,我不想更改 header 或 header_wrap 代码,因为这工作正常。对于更多上下文,如果需要,我使用了这个小提琴:https://jsfiddle.net/eL1cabv9,但故意希望标题对于非移动尺寸的屏幕尺寸透明。
请帮忙。谢谢!
@media screen and (max-width: 480px) {
.ico {
width: 100px;
height: 100px;
}
.header {
background: #ffffff;
}
}
.ico {
height: 300px;
width: 300px;
position: fixed;
z-index: 999;
top: 30%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
margin-left: 15px;
margin-top: 16px;
}
header {
width: 100%;
height: 60px;
position: fixed;
top: -125px;
}
.header_wrap {
width: 100%;
height: 100%;
position: relative;
}
【问题讨论】:
-
你的例子和你的小提琴看起来很不一样。你希望标题是什么颜色的?
-
我希望它是白色的(但仅限于 480 像素以下)。否则透明。
标签: html jquery css twitter-bootstrap frontend