Heim > Fragen und Antworten > Hauptteil
Das ist mein aktueller Code
#h1{ font-family: 'open-sans'; position: absolute; color: white; font-size: 16px; left: 850px; margin-top: 5px; position: fixed; }
Nichts hat funktioniert, ich habe auch versucht, Positionsklebrigkeit bei Schmerzen anzuwenden, aber es hat nicht funktioniert
P粉7383463802023-09-13 10:39:01
你应该移除 position: absolute;
只保留 position: fixed;
。
h1{ position: fixed; font-family: 'open-sans'; color: white; font-size: 16px; background-color: black; top: 0;}
希望这能帮到你。
你也可以使用 background-color
来使其显示正确。