> == Gunlaug Sørtun <[EMAIL PROTECTED]>
 >> == Terry Thompson <[EMAIL PROTECTED]>

> Table layout for navigation...
> 
>> http://www.washington.edu/doit/Stem/
> 
> ...converted to CSS layout...
> 
>> http://staff.washington.edu/tft/menutest/test.html
> 
> 'CSS table' properties are supposed to solve these problems, and will
> work just fine in all supporting browsers...

... but we really should be able to accomplish this with the tools at 
hand.

I think if you copied your extra margin and padding to the anchor 
elements, you might get it to work in standards-compliant browsers.  For 
IE, you will need to give it layout. (1)  The Holly hack is my preferred 
technique for this.  Not tested, but I think this might work:

     #MenuBar li a {
         display: block;
         margin: 0;
         padding: 0;
         padding-bottom: 32767px;
         margin-bottom: -32767px;
         text-decoration: none;
         font-weight: bold;
         color: #000000;
     }
     * html #MenuBar li a {
         height: 1%;
     }

Good luck,

   -- Scott Sauyet


(1) http://www.satzansatz.de/cssd/onhavinglayout.html

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to