On Fri, Jul 9, 2010 at 12:01 PM, Holo <[email protected]> wrote: > Hi > > I need to show two images side by side. First image is 200px wide and > second image 750px wide. > > I have > > <div class="container"> > <div class="span-24 last"> > <img src="img1.png" /> > <img src="img2.png" /> > </div> > </div> > > Don“t know why but second image is always below first image. Need some > advice with this.
That's because there's an iota of whitespace between them, and 200 px + " " + 750 px > 950px. Try this: <div class="container"> <div class="span-24 last"> <img src="img1.png" /><img src="img2.png" /> </div> </div> -- -- Christian Montoya mappdev.com :: christianmontoya.net -- You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en.
