I’ve created a HTML tab panel using CSS. It is working fine in chrome but is jumbled up a bit in FireFox (if tabs are more than 3, they are misaligned.
Whereas in IE, it’s totally screwed up (in addition to the above problem, even the absolute positioning of logo mage doesn’t work.
First and most importantly add a doctype which will fix IE8 straight away. As you are using old fashioned deprecated elements you will need a transitional doctype as follows.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ToDo MyCloudList</title>
IE6 and 7 need haslayout on the header so change this as follows:
/* hasLayout */
[B].header,[/B]
.logo {
zoom:1;
}
The navigation left co-ordinate needs to be set for IE6 or it will center it with the text.