Posted by dorayme on 08/28/07 01:39
I would appreciate suggestions for having the tables at
http://tinyurl.com/2mjd8m
to be the same width, preferably 100%, so that hell does not
break loose in IE 6 (I have no idea about IE 7?). No problem with
non IE modern browsers, simply table {...; width: 100%; ...} does
it.
#nav {... display: inline} seems to stop the hell. So does
conditionals that make IE override width as with:
table {width: 100%;} followed by
/*hide from IE mac\*/
* html table {width: 0}
/*end hide*/
or even (I think?)
/*hide from IE mac\*/
* html #content {height:1%;}
/*end hide*/
but this does not get the tables to be the same width in IE. The
first conditional above that in effect tells IE not to bother
about 100% is the one I have used elsewhere where I simply don't
bother about cross browser looks. But this time I want to see if
there is an easy way to have it all.
--
dorayme
[Back to original message]
|