How to fix the top title without interference from other content
P粉154228483
P粉154228483 2023-09-12 11:17:41
0
1
465

This is my current code

#h1{
    font-family: 'open-sans';
    position: absolute;
    color: white;
    font-size: 16px;
    left: 850px;
    margin-top: 5px;
    position: fixed;
}

Nothing works, I also tried using positional stickyness in pain but it doesn't work

P粉154228483
P粉154228483

reply all(1)
P粉738346380

You should remove position: absolute; and keep only position: fixed;.

h1{
position: fixed;
font-family: 'open-sans';
color: white;
font-size: 16px;
background-color: black;
top: 0;}

Hope this helps. You can also use background-color to make it display correctly.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!