Is there any issues with always self closing empty tags in html?
Posted
by Simon
on Stack Overflow
See other posts from Stack Overflow
or by Simon
Published on 2010-05-08T23:33:17Z
Indexed on
2010/05/08
23:38 UTC
Read the original article
Hit count: 221
Are there any browser issues with always collapsing empty tags in html. So for example and empty head can be written like this
<head></head>
but is can also be written like this
<head/>
Will the second case cause issues in any scenerio?
Thanks
© Stack Overflow or respective owner