我正在使用html和css创建一个项目,我正在使用表创建windows 8样式我将添加不同的图像作为表格单元格背景 档 垃圾 但它没有显示任何图像
答案 0 :(得分:0)
试试这个:
<table>
<tr>
<td background="http://wallpaper-download.net/wallpapers/random-wallpapers-green-lime-background-wallpaper-32549.jpg" height="600px" width="700px" align="center">rvrtv</td>
</tr>
</table>
答案 1 :(得分:-1)
在表格中的每个单元格中显示图像
<html>
<style>
.first
{
background : imagepath ;
}
</style>
<body>
<table>
<tr>
<td class="first">some value</td>
</tr>
</table>