I want to put an image with relative path to local file.
Firefox doesn't seem to accept something like
<img src=images/test.gif>
What's the syntax ?开发者_如何学运维
Try:
<img src="./images/test.gif" />
but have you checked that the image exists at that location?
精彩评论