Tabs are not aligning in IE 6 when two or more are contained in a table. Works fine in Firefox.
Here is a sample:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Test</title>
<link rel="stylesheet" type="text/css"
href="rollbar/rollbar.css" media="all" />
<script type="text/javascript"
src="rollbar/rollbar.js"></script>
<script type="text/javascript"
src="rollbar/rollbar.js"></script>
</head>
<body onload="new DynarchRB('tabset1', { tabs:'top', fixedHeight:true, hideButtons:true, animation:false });
new DynarchRB('tabset2', { tabs: 'top', fixedHeight:true, hideButtons:true, animation:false });">
<table border="0" width="100%" height="100%">
<tr>
<td>
<div id="tabset1">
<div title="Tab 1">
<table border="0" id="test1" width="100%" height="100%" cellpadding="0" cellspacing="1" >
<tr>
<td> </td>
</tr>
</table>
</div>
<div title="Tab 2">
<table id="test2" border="0" width="100%" height="100%">
<tr>
<td> </td>
</tr>
</table>
</div>
</div>
</td>
<td width="30%">
<div id="tabset2">
<div title="tab 3">
<table id="test3" width="100%" cellspacing="0" height="100%" >
<tr>
<td> </td>
</tr>
</table>
</div>
<div title="tab 4">
<table id="test4" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr">
<td> </td>
</tr>
</table>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>