How is max-height:200px; supported in IE6 as shown in the following CSS? div.autocomplete { position:absolute; width:400px; background-color:white; border:1px solid #aca899; margin:0px; padding:0px; font-size:11px; text-align:left; max-height:200px; overflow:auto; } --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
ie6 does not support max-height and only supports min-height when applied to TH TR or TD sorry On Nov 14, 2007 11:03 AM, maasolo <maasolo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > How is max-height:200px; supported in IE6 > as shown in the following CSS? > > > div.autocomplete { > position:absolute; > width:400px; > background-color:white; > border:1px solid #aca899; > margin:0px; > padding:0px; > font-size:11px; > text-align:left; > max-height:200px; > overflow:auto; > > } > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
On Nov 14, 2007 3:31 PM, Brian Williams <brianw1975-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> ie6 does not support max-height and only supports min-height when applied > to TH TR or TD > > sorry >It''s worth noting that the height property in IE always behaves as min-height, since containers will expand to their content. IIRC this happens when containers either haver overflow: (auto|visible) or are relatively positioned. Best, -Nicolas --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---