Why is a self-closing iframe tag preventing further DOM elements to be displayed?
Because the iframe element isn’t a self-closing element. The versions of Firefox and Safari you’re using are treating the /> at the end as just > and assuming everything after it is contained within the iframe. If we attempt to pass the code you’ve given through W3C’s validator we’ll see the following errors: Error: Self-closing … Read more