gpt4 book ai didi

html - 文本的最大高度和颜色变化

转载 作者:行者123 更新时间:2023-11-28 04:30:37 25 4
gpt4 key购买 nike

我正在尝试让 h1 标签的文本从白色变为黑色。我正在尝试使用 max-height 媒体查询,但我没有得到任何改变。

h1 {
position: fixed;
width: 100%;
text-align: center;
color: #eee;
font-size: 4em;
background-color: hsla(281, 100%, 7%, 0.3);
height: 100%;
}
@media and(max-height: 400px) {
h1 {
color: #222222;
}
}
<h1>text<h1>

最佳答案

像这样删除“和”:

@media (max-height: 400px) {
h1 {
color: #222222;
}
}

关于html - 文本的最大高度和颜色变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36062928/

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