我有一张桌子,想要在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>
...
这是我得到的结果的图像:
因此,您可以看到蓝色斜角背景恰好位于每个td
的中心。我希望它伸展到td
的边缘,以便整个td
看起来是斜面的。怎么办呢?
答案 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 */
}
HERE 是生成CSS Gradient
的最佳工具