在 IE8 中显示背景图像
我的背景图像在 IE8 中不显示:
<tr>
<td height="11"></td>
<td height="11"></td>
<td height="11" background="images/lgin-bg-blnk.jpg">kjsdfk</td>
</tr>
My background images aren't showing in IE8:
<tr>
<td height="11"></td>
<td height="11"></td>
<td height="11" background="images/lgin-bg-blnk.jpg">kjsdfk</td>
</tr>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
background
不是元素的有效属性。尝试将其更改为内联 CSS 样式:
...
background
is not a valid attribute for a<td>
element. Try changing it to an inline CSS style:<td height=11 style="background:url('images/lgin-bg-blnk.jpg')">...</td>
kjsdfk
从标题中推测您想要背景图像,它应该位于 < code>style 属性如下所示,或者在外部样式表中更好。
kjsdfk
background
不是TD
的有效 HTML 属性,尽管它是旧版 Netscape 和 IE 浏览器支持的非标准属性 参见:TH/TD 定义添加:引号/无引号参考:W3C
<td height="11" background="images/lgin-bg-blnk.jpg">kjsdfk</td>
presuming from the title you want a background image it should be in a
style
attribute like below, or even better in an external stylesheet..<td height="11" style="background: url(images/lgin-bg-blnk.jpg);">kjsdfk</td>
background
is not a valid HTML attribute for aTD
, though it was a non-standard property that was supported by older Netscape and IE browsers see: TH/TD definitionAdded: reference for quotes/no quotes : W3C
您还必须指定宽度。
You must specify the width also.