|
Posted by Jonathan N. Little on 12/12/14 11:39
jslaybaugh@gmail.com wrote:
<snip>
> If I take the bottom row height attribute out, the table is all messed
> up on MSIE. The top row becomes huge and the bottom row becomes small.
> Almost exactly opposite what I want. (although not exactly opposite,
> because if I try the opposite scenario--not putting a height attribute
> on the top row--it still doesnt work). Of course, again in Firefox, it
> works great if I remove the height attribute off the bottom row, but I
> need a solution for MSIE as I mentioned before.
>
> Thanks for the suggestions, but I'm still stuck here....any other
> ideas????
If I had to guess here, I bet this is important because the table
doesn't contain tabular data but your layout. Simple solution is don't,
just loose the table!
STYLE:
BODY {
margin: 0;
padding: 0;
}
..banner {
height: 100px: margin: 0;
...[whatever else you want to style ]
}
HTML:
....
<body>
<div class="banner">text in the upper part</div>
<p>
Every thing else regardless how much you put here...
</p>
</body>
</html>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|