我有一个有两行三列的表。第一行用于正文,第二行用于页脚。
我想用 CSS 设计页脚,这样看起来和感觉更好。我可以添加图像,但是每个图像之间存在间隙,因此效果不佳。
该行tr
有三列,每列td
有一张图像。
下面是 HTML 代码。
<tr>
<td class="FooterLeftBG"> //left css class
</td>
<td style="width: 85%;" class="FooterBG"> //middle css class
<table style="width: 85%">
<tr>
<td align="left">
some text
</td>
<td style="padding-top: 1px">
some text</td>
</tr>
</table>
</td>
<td class="FooterRightBG"></td>//right css class
</tr>
这是CSS代码:
td.FooterLeftBG // CSS class for left td, used to make left hand side curve footer
{
background: url('footer-leftbg.png') bottom left;
height:35px;
width:12px;
padding:0px;
float:right;
}
td.FooterRightBG // CSS class for right td, used to make right hand side curve footer
{
background: url('footer-right-bg.png') bottom right;
height:35px;
padding:0px;
width:12px;
float:left;
}
td.FooterBG // CSS class for td holding the footer contents
{
background:url('footer-middle-bg.png');
background-repeat:repeat-x;
border-collapse:collapse;
height:35px;
width:5px;
}
请帮忙。我已经尝试了 1 周 :( 我也通过谷歌尝试过。
预期格式: