w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



iframe nested within elements, elements nested within iframe

Classified as: flow content, phrasing content, embedded content, interactive content, palpable content

Parents, iframe

Children, iframe

Examples: iframe parents, iframe children

Valid Syntax 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html>
<head>
<title>...</title>
</head>
<body>

<p><iframe>...</iframe></p>

<h1><iframe>...</iframe></h1>

<article><iframe>...</iframe></article>

</body>
</html>
Invalid Syntax 2
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<html>
<head>
<title>...</title>
<iframe>...</iframe>
</head>
<body>

<a><iframe>...</iframe></a>

</body>
</html>

Syntax 1: Valid, iframe nested within p, h1, article: allowed
Syntax 2: Invalid, iframe nested within head, a: not allowed

iframe intro iframe browser display iframe src vs srcdoc iframe syntax iframe width, height attributesiframe name attributeiframe sandbox attributeiframe seamless attributeiframe src attributeiframe srcdoc attribute