使用html / css在表格的td中拉伸背景图像

时间:2013-03-14 07:22:31

标签: html css image html-table stretch

我有一张桌子,想要在TD的宽度上拉伸某个背景,无论宽度如何。

我相关td的CSS目前是这样的:

.tools .theader
{
margin:1px;background-color:#ffffcc;
background:url(../images/td_bg.png) no-repeat center center;
}

,HTML就是这样的:

<table class'tools'>
<tr>
<td class='theader' colspan=2>
Background
</td>
...

这是我得到的结果的图像: enter image description here

因此,您可以看到蓝色斜角背景恰好位于每个td的中心。我希望它伸展到td的边缘,以便整个td看起来是斜面的。怎么办呢?

1 个答案:

答案 0 :(得分:1)

您可以使用css渐变

<强> HTML

<table class'tools'>
<tr>
<td class='theader' colspan="2">
    <span>Background</span>
</td>
    </tr>
    </table>

<强> CSS

.theader > span{
    color:white;
    padding:6px 10px;
    background: #fffcfc; /* Old browsers */
background: -moz-linear-gradient(top,  #fffcfc 0%, #2989d8 12%, #2989d8 51%, #207cca 96%, #ffffff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fffcfc), color-stop(12%,#2989d8), color-stop(51%,#2989d8), color-stop(96%,#207cca), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #fffcfc 0%,#2989d8 12%,#2989d8 51%,#207cca 96%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #fffcfc 0%,#2989d8 12%,#2989d8 51%,#207cca 96%,#ffffff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #fffcfc 0%,#2989d8 12%,#2989d8 51%,#207cca 96%,#ffffff 100%); /* IE10+ */
background: linear-gradient(to bottom,  #fffcfc 0%,#2989d8 12%,#2989d8 51%,#207cca 96%,#ffffff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fffcfc', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}

DEMO

HERE 是生成CSS Gradient

的最佳工具