Search code examples
csspositioningfixed

How to work with fixed positioning in CSS?


I'm trying to make a fixed vertical navigation on the left hand side of my website.

But, whenever I give it the position: fixed; and then position it using margins, it cancels out any links I have on the information in the <nav> tags.

Has anyone got any ideas on how to change this?


Solution

  • the solution is in positioning using left and top properties not margins :)

    #mydiv{
      position:fixed;
      top:100px;
      left:0px;
    }