图像显示在IE中,但不在Firefox中显示

时间:2011-10-22 21:32:12

标签: css xml

我使用XML和CSS添加如下图像:

<html:img src="./pictures/logo.jpg" alt="dupa"/>

它们在IE中正确显示,但在Firefox中没有显示。可能是什么原因以及如何解决?

我用这个,但还是看不到图片...... 我的代码:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="styl.css"?>
<dokument xmlns:html="http://www.w3.org/TR/REC-html40">
<logo><img src="./Obrazki/logo.jpg"/></logo>
</dokument>

2 个答案:

答案 0 :(得分:1)

应该是

<img src="./pictures/logo.jpg" alt="dupa" />

阅读此http://www.w3schools.com/html/html_images.asp

答案 1 :(得分:0)

溶剂是:

<dokument xmlns:html='http://www.w3.org/1999/xhtml'>

而不是

<dokument xmlns:html="http://www.w3.org/TR/REC-html40">