我需要一個響應式桌面背景圖片。我的問題是高度需要靈活,取決於內部有多少信息。我做了這樣的:響應式桌面背景圖片
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>
的問題是,背景圖像的底部被裁剪。
如何顯示整個背景圖像?
所以,你想它的規模,以查看圖像藏漢的底部邊框? –
是的,無論表格內有多少文字,我都需要看到所有邊框。 – Robster