Search code examples
androidhtmlimageandroid-browser

img src not working in android browser


I have a simple question.

ex)

<div class="myclass">
<img src="http://path/to/image.jpg">
</div>

In iOS and desktop browsers are good.
but android browser not working a img tag.
This img tag is not connect with any JavaScript or even CSS.
pure HTML code.
I have no idea.
please help me.


Solution

  • You forgot the endtag </img>. Or in one line <img src="http://path/to/image.jpg" />