I am trying to get my web site to look good in internet explorer but when IE displays tables it messes up. I have this thing with a green table header at the top of every table. In that green table header I would have a title for what is contained in the table, like Sign Up or Log In. But Internet explorer would display this as follows:
"Log In" would look like:
Log
In
and "This is a title" would be like:
This
is
a
title
Internet explorer would display every word on a new line. Can you please help me out because I am really lost and have searched the internet but to no avail.
This is my css which is applied to the table header:
#tableheader{
vertical-align: top;
text-align: left;
width: 30px;
height: 10%;
background-color: rgb(34, 131, 22);
color: white;
font-family:verdana;
font-size: 1em;
border-color: black;
}
I am using IE8.