Is there any issues with always self closing empty tags in html?
- by Simon
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