Tengo tres imágenes en un contenedor que deben apilarse sin interrupciones, pero hay algo de relleno entre ellas.¿Cómo eliminar el relleno de imagen que se muestra involuntariamente?
se puede ver la página aquí: http://www.arbitersoflight.net/media/
Los tres botones grandes en el contenedor de la izquierda son los que están en cuestión.
Aquí está el código para el contenedor:
CSS
#mainBoxFull {
background-image: url(/img/cont/mainfull.jpg);
float: left;
height: 560px;
width: 560px;
margin: 0px;
padding: 20px;
}
HTML
<div id="mainBoxFull">
<img src="/img/btns/media/bgal.jpg" alt="screenshot" width="560" height="180" border="0" />
<img src="/img/btns/media/bvid.jpg" alt="videos" width="560" height="200" border="0" />
<img src="/img/btns/media/bsoon.jpg" alt="coming soon" width="560" height="180" border="0" />
</div>
+1, flotante: izquierda; en la imagen también funcionará. – plebksig
¡Funciona muy bien, gracias! – Ferret
De nada. – Boldewyn