I have three images inline - each taken a width of 33%. As you resize the window all divs including the images readjust perfectly, however rather than resize the full image, all images are resized but continually see less of the images.
I would like the sizing to act how it currently is, without losing complete view of the full image.
<div class = "main>
<div class = "image">
<img src = "imgpathway">
</div>
<div class = "image">
<img src = "imgpathway">
</div>
<div class = "image">
<img src = "imgpathway">
</div>
</div
.main {
white-space:nowrap;
}
.image{
white-space:normal;
}