Hi Thank you very much. Your solution works fine. Still don't understand why is there a white space. Is it the eol char? my editor is configured to strip spaces at the end of the lines and saves the files in utf-8, linux file format.
Cheers holo On 9 Jul, 19:31, Christian Montoya <siro...@gmail.com> wrote: > On Fri, Jul 9, 2010 at 12:01 PM, Holo <hologra...@gmail.com> 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 blueprint...@googlegroups.com. To unsubscribe from this group, send email to blueprintcss+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en.