Home  >  Q&A  >  body text

How to fix the top title without interference from other content

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粉154228483P粉154228483403 days ago469

reply all(1)I'll reply

  • P粉738346380

    P粉7383463802023-09-13 10:39:01

    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.

    reply
    0
  • Cancelreply