Try rendering this html in safari and you''ll see what I mean. It does not show up in Firefox. <html> <body style="margin:0;padding:0;"> <div style="width: 70%;background:black;float:left"> asdf </div> <div style="width: 30%;background:blue;float:right;"> asdf </div> </body> </html> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
try <html> <body style="margin:0;padding:0;" > <div style="display:table;width:100%;"> <div style="display:table-row"> <div style="display:table-cell;width: 70%;background:black;"> asdf </div> <div style="display:table-cell;width: 30%;background:blue;"> asdf </div> </div> </div> </body> </html> On 3/29/07, jko170 <jko170-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Try rendering this html in safari and you''ll see what I mean. It does > not show up in Firefox. > > <html> > <body style="margin:0;padding:0;"> > <div style="width: 70%;background:black;float:left"> > asdf > </div> > <div style="width: 30%;background:blue;float:right;"> > asdf > </div> > </body> > </html> > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Perfect, thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---