Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-24 Thread MEM
Philippe --- Sorry for this late reply. I couldn't wish better. All clear. :) (for now) :D Thanks for your time and css teachings on this. Márcio __ css-discuss [cs...@lists.css-discuss.org]

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-16 Thread Philippe Wittenbergh
On Mar 14, 2010, at 1:10 AM, MEM wrote: However, if I recall correctly, this very nice property/value par, is not well supported cross-browser, that's why I try to avoid it. As long as you apply it to inline element, ti should be reasonably well supported, including IE 6 and 7. Applied to

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-13 Thread MEM
well the a element is still inline (I was referring to that element in my answer above). Try setting to a to display: inline-block in that test case. I have change to display: inline-block; and, it worked as expected. The padding space on a elements was rendered on the viewport. However, if I

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-08 Thread Philippe Wittenbergh
On Mar 7, 2010, at 11:26 PM, MEM wrote: Ingo already gave you an explanation for what that space is (white-space nodes in the html mark-up) When you float the element or otherwise set to to display block, html parsing rules kicks in, and basically those nodes are suppressed for display

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-08 Thread Philippe Wittenbergh
On Mar 7, 2010, at 11:26 PM, MEM wrote: the parent UL DIV are set to 'overflow:hidden', the a elements are set to display: inline. The padding (top and or bottom) is applied to the elements, but because it is an inline element, the excess padding will be clipped by the overflow:hidden.

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-07 Thread MEM
Thank you all for your replies, again.:) I needed some time to test and think a little... 1) If we apply overflow property here, will this property be inherited to descendants even without being declared on them as inherit ? see

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-07 Thread Benoit Favreault
2010/3/7 Benoit Favreault b...@provokat.ca we need to remove the overflow:hidden; declarations, may I presume that, on this case, this is not the proper hasLayout trigger to sue? In your opinion, what effective hasLayout trigger can be used here? On floats, display : inline is a good

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-03-07 Thread Thierry Koblentz
2010/3/7 Benoit Favreault b...@provokat.ca we need to remove the overflow:hidden; declarations, may I presume that, on this case, this is not the proper hasLayout trigger to sue? In your opinion, what effective hasLayout trigger can be used here? On floats, display : inline is a

[css-d] understading ul li as menus - A 5 question quest.

2010-02-28 Thread MEM
Hello all, Sometimes we learn enough for doing it, and even customize it but, I actually would like to clear some points on the path to properly and precisely understand it. I will try to be as technical as I can at this moment, please correct any concepts that I may get wrong. Thanks a lot.

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-02-28 Thread David Laakso
MEM wrote: Hello all, http://www.nuvemk.com/formacao_lx/outros/ul_li_tests.html - the css styles are inside. 5) The question that make all those be here: how can I put a background on the navigation, that goes beyond the right

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-02-28 Thread David Laakso
David Laakso wrote: MEM wrote: Hello all, http://www.nuvemk.com/formacao_lx/outros/ul_li_tests.html - the css styles are inside. aside -- beware the IE em font-scaling bug -- since helvetica is in the font-stack why are you feeding Macs arial? /aside Best, ~d Sorry.

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-02-28 Thread Ingo Chao
2010/2/28 MEM tal...@gmail.com ... http://www.nuvemk.com/formacao_lx/outros/ul_li_tests.html - the css styles are inside. ...                1)                If we apply overflow property here, will this property                be inherited to descendants even without being declared    

Re: [css-d] understading ul li as menus - A 5 question quest.

2010-02-28 Thread Philippe Wittenbergh
On Mar 1, 2010, at 12:17 AM, MEM wrote: Here is the source information: http://www.nuvemk.com/formacao_lx/outros/ul_li_tests.html - the css styles are inside. 3.1) I see that, to solve it, we can use the float property to eliminate that