how to remove the tiny empty space between nav and body

Viewed 48

I have heading in navbar with its own backgroundcolor but there is a small part showing the body background color i suck at explaining so here is a picture

enter image description here

1 Answers
  // you can use this in main CSS file
 
 * body{
    margin:0;
    padding:0;
   }
    
    
  
Related