Why did the tag <iframe> is not supported in the HTML 5? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why did the tag <iframe> is not supported in the HTML 5?

28th Feb 2019, 3:09 PM
Ziad Hassan
Ziad Hassan - avatar
2 Answers
+ 2
Thanks
28th Feb 2019, 3:52 PM
Ziad Hassan
Ziad Hassan - avatar
0
There's a couple of misconceptions in your post. First, the frame and frameset elements are not deprecated in HTML5, they're obsolete (i.e., they've been removed entirely). Second, the frame and frameset elements are not the same thing as the iframe element, nor do they give the same output: The frameset element replaces the body element in pages as a means to include a different document model for web pages: they're bad for usability and accessibility, and what they intended to accomplish have been completely replaced by CSS and ubiquitous server-side development. The iframe element, on the other hand, does not replace the body of a page. It acts as a means to include a new browsing context embedded within a block of content. It does not suffer from the same usability or accessibility problems as the frameset model and is used almost anywhere one needs to include an embedded browsing context (widgets being the most prolific example).1 The iframe in HTML5 also takes on additional features in that it can be sandboxed, allowing the parent document to decide what gets executed within it. This allows for some measure of security for the parent document (and visitors to the parent document) when embedding untrusted content.
14th Mar 2019, 8:43 PM
zubAyr Alee
zubAyr Alee - avatar