Re: [WSG] Voice family box model hack

2005-04-28 Thread Stevio
to fix IE problems. Why has that been such a well kept secret? Thanks, Stephen - Original Message - From: Thierry Koblentz [EMAIL PROTECTED] To: wsg@webstandardsgroup.org Sent: Wednesday, April 27, 2005 4:00 PM Subject: Re: [WSG] Voice family box model hack Stevio wrote: Can someone

Re: [WSG] Voice family box model hack

2005-04-28 Thread Kornel Lesinski
On Thu, 28 Apr 2005 09:43:59 +0100, Stevio [EMAIL PROTECTED] wrote: This in turn makes it easier to develop code specifically to fix IE problems. Why has that been such a well kept secret? I thought that was quite popular technique. IE has conditional comments for JScript as well and that's

Re: [WSG] Voice family box model hack

2005-04-28 Thread Michael Wilson
Stevio wrote: Yeah but what does each of the following lines actually do? height: 100%; voice-family: \}\; voice-family: inherit; height: auto; Hi, height: 100%;: This line sets the height for all browsers with CSS support. voice-family: \}\; voice-family:inherit; Due to a CSS

Re: [WSG] Voice family box model hack

2005-04-28 Thread Thierry Koblentz
Michael Wilson wrote: If I have to use a box model hack (BMH), rather than a conditional comment, I prefer the following [01]: * html foo { /* Selector recognized by IE only */ height: 100%; /* Value for IE5.x/Win and IE6.x/Win QM */ hei\ght: auto; /* Value for IE6/Win */ } I

Re: [WSG] Voice family box model hack

2005-04-28 Thread Michael Wilson
Thierry Koblentz wrote: Michael Wilson wrote: If I have to use a box model hack (BMH), rather than a conditional comment, I prefer the following [01]: * html foo { /* Selector recognized by IE only */ height: 100%; /* Value for IE5.x/Win and IE6.x/Win QM */ hei\ght: auto; /* Value for

[WSG] Voice family box model hack

2005-04-27 Thread Stevio
Can someone explain how the following works? #container { position: relative; min-height: 100%; height: 100%; voice-family: \}\; voice-family: inherit; height: auto; } htmlbody #container { height: auto; } Which browsers do and do not use the height

Re: [WSG] Voice family box model hack

2005-04-27 Thread Kornel Lesinski
On Wed, 27 Apr 2005 15:30:59 +0100, Stevio [EMAIL PROTECTED] wrote: Can someone explain how the following works? Put subject of your email in Google search box and hit I'm feeling lucky. -- regards, Kornel Lesiski ** The discussion list for

Re: [WSG] Voice family box model hack

2005-04-27 Thread Thierry Koblentz
Stevio wrote: Can someone explain how the following works? Hi Stephen, You may want to read this: http://tantek.com/CSS/Examples/boxmodelhack.html Then this: http://msdn.microsoft.com/workshop/author/dhtml/overview/ccomment_ovw.asp Unless I'm missing something, the latter is a simpler and -