这是我现在的代码
#h1{
font-family: 'open-sans';
position: absolute;
color: white;
font-size: 16px;
left: 850px;
margin-top: 5px;
position: fixed;
}
没有任何效果,我在痛苦中也尝试过使用位置粘性,但它不起作用
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
你应该移除
position: absolute;只保留position: fixed;。h1{ position: fixed; font-family: 'open-sans'; color: white; font-size: 16px; background-color: black; top: 0;}希望这能帮到你。 你也可以使用
background-color来使其显示正确。