I have a little issue related to a header where a small height come up and i do not know how to remove it.
HTML:
<div class="wrapper_header">
<div class="left_header"> </div>
<div class="central_header fondo_amarillo">
<div class="aleron_izquierdo"></div>
<div class="menu_option"><a href="#">Option 1</a></div>
<div class="menu_option"><a href="#">Option 2</a></div>
<div class="menu_option"><a href="#">Option 3</a></div>
<div class="menu_option"><a href="#">Option 4</a></div>
<div class="menu_option"><a href="#">Option 5</a></div>
</div>
<div class="right_header fondo_amarillo"> </div>
CSS:
.wrapper_header {
width:100%;
display:table;
}
.central_header {
width:500px;
display:table-cell;
}
.left_header {
display:table-cell;
}
.right_header { display:table-cell; }
.left_header {
background-image:url(http://www.alarconrotulos.es/img/amarillo_cabecera_izq.png);
background-repeat:repeat-x;
}
.aleron_izquierdo {
width:130px;
height:69px;
background-image:url(http://www.alarconrotulos.es/img/pestana_cabecera_peque_960.png);
position:relative;
left:-130px;
float:left;
}
.menu_option a {
font-size:18px;
height:69px;
vertical-align:bottom;
color:rgb(150,150,150);
float:right;
padding:0 5px;
display: block;
display: -webkit-box;
-webkit-box-align: end;
-webkit-box-pack: center;
display: -moz-box;
-moz-box-align: end;
-moz-box-pack: center;
display: box;
box-align: end;
box-pack: center;
}
.menu_option a:hover {
color:rgb(84,84,84);
}
.fondo_amarillo {
background-color:#FFFF58;
}
Here you run the above code: http://jsfiddle.net/aL447/
When you run the code, you will see that the central_header block has three pixels higher than it should be and I can not understand why.
Any ideas?
Thanks.