Search code examples
htmlcsspositioning

Centered and fixed header


I am working on my portfolio: www.bbellmedia.com/mywork

I want the text 'Bryan Bell' to be centered how it is, but also be fixed when a user scrolls.

What is the best way of achieving this?

Thank you very much!


Solution

  • #header {
      position:fixed;
      text-align:center;
      width:100%;
    }