Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How to close image tag in HTML?

<img src="#"></img>

or

<img src="#" />

or

 <img src="#">
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
392 views
Welcome To Ask or Share your Answers For Others

1 Answer

in xhtml:

<img src="#" alt="some explaining" />

the closing / is for backwards compatibility

in html5

<img src="#" alt="some explaining">

no need anymore to close the <img> tag, (the browser knows that it is self-closing)

more info here: http://www.w3.org/TR/html5/embedded-content-0.html#the-img-element (thanks to Chris)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...