【发布时间】:2018-01-01 23:58:05
【问题描述】:
我需要一个响应式表格背景图像。我的问题是高度需要灵活,取决于里面有多少信息。我是这样设计的:
body {
background-color: black;
}
<table style="width: 520px;background-image: url(http://wow.zamimg.com/images/wow/tooltip.png);background-size: cover;color:white">
<tr align="center" >
<td>Description1</td>
</tr>
<tr align="center" >
<td>Description2</td>
</tr>
<tr align="center" >
<td>Description3</td>
</tr>
</table>
问题是背景图像的底部被裁剪了。
如何显示整个背景图像?
【问题讨论】:
-
所以你想缩放它,以查看图像的底部边框?
-
是的,我需要查看所有边框,无论表格中有多少文本。
标签: css html-table responsive