Pergunta

So I have a vertical navigation bar. I want to make it so it will stay fixed on the left side as long as you scroll down but there is a problem. If I add a text next to it, a white space will appear.

Here's the preview: www.dp-gaming.url.ph

Foi útil?

Solução

You problem is the default margin from the <h1>

Set this in your css:

h1 {margin:0;}

If you want to set all default margins from all elements, you could use this code:

* {margin:0;}

Outras dicas

just make it's position property fixed,

.class{
    position : fixed;
 }
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top