Having trouble with the lazysizes plugin and srcset on a fluid layout. The page keeps extending as you scroll instead of loading to the correct length
You can see my attempt using the bootstrap framework in this CodePen demo
After much research, it seems like the browser is unable to calculate the height because it's not set, but I can't seem to make it work responsively
Here is an example of the code with only 10 rows:
<div class="container-fluid">
<div class="row-fluid">
<div class="col-xs-12 col-sm-6">
<img data-sizes="auto" data-src="http://placehold.it/160x107" data-srcset="http://placehold.it/320x231 640w, http://placehold.it/640x426 1280w, http://placehold.it/1000x666 2000w, http://placehold.it/2500x1666 4000w" class="img-responsive lazyload" />
</div>
<div class="col-xs-12 col-sm-6">
<img data-sizes="auto" data-src="http://placehold.it/160x107" data-srcset="http://placehold.it/320x231 640w, http://placehold.it/640x426 1280w, http://placehold.it/1000x666 2000w, http://placehold.it/2500x1666 4000w" class="img-responsive lazyload" />
</div>
</div>
</div>
</div>
Would appreciate any assistance with this issue