Hi, i am trying to get space after a table.
Currently i have a table followed by a header. For some reason there is no space between the table and the header, in IE and FF, so this is something i am doing wrong but dont know what.
I have the following code:
<h3>Tier Classifications Standards</h3>
<table>
<tbody>
<tr>
<td> </td>
<td>Tier 1</td>
<td>Tier II</td>
<td>Tier III</td>
<td>Tier IV</td>
</tr>
<tr>
<td>Redundant Backbone Pathways</td>
<td>Not Required</td>
<td>Not Required</td>
<td>Required</td>
<td>Required</td>
</tr>
</tbody>
</table>
<h3>Flexibility</h3>
and the following CSS styles are shown in firebug:
#content table {
border: 1px solid black;
font-size:1.3em;
padding:0 0 45px !important;
}
table {
border-collapse:collapse;
border-spacing:0;
}
#content h3 {
font-size:1.2em;
font-weight:bold;
margin-bottom:0.5em;
}
h3 {
margin-bottom:1.6em;
}
I even added !important to the table padding incase cascade was overriding the property, but still the same result.
The actual page is here: http://www.foss.ae/wp/products-services/data-centre-services/ (the table is about half way down, just under the title ‘Tier Classifications’).
Any ideas? Many thanks in advance,
Chris