mallvcvlol
New Member
The easiest way to describe this is to refer to my fiddle here:http://jsfiddle.net/b3rgstrom/k7qq4/Here is my CSS:\[code\].dynamic { margin-top: 10px; position: relative; overflow: hidden; height: 200px; width: 100%;}.dynamic img{ margin: -2px;}.repeat { position: relative; background-repeat: repeat; background: url("http://placehold.it/100x100"); width: 100%; height: 200px; overflow: hidden; margin-top: 30px;}\[/code\]I want to have a dynamic list of small images to cover the viewport within a fixed height area that covers the entire browser window from side to side.The problem is that the images don't show up until they have their fully needed space, which in my example is 100px.If I take one image and do a repeat, it will show as much of the image as needed to cover the entire screen from side to side, this is what I want to accomplish. Let me know if I can clarify.Any thoughts?