I have the below code, now the text outside of the table will centre fine in IE and FF but the table will not centre at all in FF but is fine in IE??
Code:
<div id="search_body_wrapper">
<div id="search_body_results">
<b>3</b> result(s) found for <b>test</b>.<br /><br />
<table border="0" cellspacing="2" cellpadding="2">
<tr style="background-color: #CCCCCC;"><td style="font-weight: bold;">Case Number</td><td style="font-weight: bold;">Summary</td></tr>
<tr style="background-color: #DEDEDE;"><td>1000001</td><td>Test Case 1</td></tr>
<tr style="background-color: #DEDEDE;"><td>1000002</td><td>Test Case 2</td></tr>
<tr style="background-color: #DEDEDE;"><td>1000013</td><td>Test Case, Entered via web form</td></tr>
</table>
</div>
</div>
Code:
#search_body_wrapper {
float: left;
width: 800px;
margin: 5px 5px 0 5px;
padding: 0 0 5px 0;
background-color: #FFFFFF;
text-align: left;
clear: left;
display: inline;
}
#search_body_results {
float: left;
width: 100%;
margin: 5px 0 0 0;
text-align: center;
clear: left;
display: inline;
}
Comment