I am trying to bridge the gap between navigation menus so that the red background is completely covered.
<nav>
<a class="current_page" href="index.php"><span class="glyphicon glyphicon-home"></span> Home </a>
<a href="blog.php"><span class="glyphicon glyphicon-pencil"></span> Blog</a>
<a href="photography.php"><span class="glyphicon glyphicon-camera"></span> Photos </a>
<a href="videos.php"><span class="glyphicon glyphicon-facetime-video"></span> videos</a>
<a href="feedback.php"> Feedback </a>
<a href="about.php"> About </a>
</nav>
and my css is:-
nav{
background-color:red;
padding:0px;
margin:0px;
}
a{
margin:0px;
padding:5px;
font-family:arial;
font-size:16px;
font-weight:bold;
display:inline-block;
background:#6a97d5;
}