Thu, 2013-11-21 09:40
I had problem, I need to insert 4 images in a div that works like horizontal scrollbox, images are same height, the size if scrollbox are fixed.
Why my images didn't stay near on the same line and wrap down?
This is a part of codes that i use:
part of css:
.boximg{
height: 220px;
width: 660px;
overflow: auto;
/* overflow-x:scroll ; */
/* overflow-y: hidden; */
white-space: nowrap;
margin-top: 15px;
margin-bottom: 10px;
}
.affiancaimg{
float:left;
/* margin-right: 10px;*/
}
part of web (
page:




Thu, 2013-11-21 09:43
#1
sorry this is the second part
<div class="boximg"> <div class="affiancaimg"><img src="immagine1.jpg" height="200" alt="immagine1"></div> <div class="affiancaimg"><img src="immagine4.jpg" height="200" alt="immagine2"></div> <div class="affiancaimg"><img src="immagine4.jpg" height="200" alt="immagine3"></div> <div class="affiancaimg"><img src="immagine4.jpg" height="200" alt="immagine4"></div> </div>
Thu, 2013-11-21 11:43
#2
Hi akenantor2, Looks like it
Hi akenantor2,
Looks like it should work are there other styles affecting the outcome?