为什么我的表格行背景图片没有出现在Wordpress中。
主题的样式表是否以某种方式抑制它?如果是,那么如何覆盖它以使图像显示,或者是否存在导致其不显示的其他错误?
请注意,表中的其他图像确实正确显示,因此文件的路径似乎正常。
<table width="250" height="200" cellpadding="0" cellspacing="0" border="1">
<tr>
<td WIDTH="250" HEIGHT="82" colspan="3"><img src="/wp-content/plugins/xxxxxxwidget/image1.png">
</td>
</tr>
<tr>
<td style="background-image:url(/wp-content/plugins/xxxxxxwidget/image2.png) no-repeat center;" WIDTH="250" HEIGHT="45" colspan="3">
</td>
</tr>
</table>
有什么建议吗?
答案 0 :(得分:1)
将position:absolute;
添加到您的表格样式。
答案 1 :(得分:0)
更改
background-image:url(/wp-content/plugins/xxxxxxwidget/image2.png) no-repeat center;
到
background:url(/wp-content/plugins/xxxxxxwidget/image2.png) no-repeat center;