w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



hr nested within elements

Classified as: flow content

Parents, hr

Children, hr

Examples: hr parents

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>

<address>
<p>...</p>
<hr>
<p>...</p>
</address>

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

<p>...<hr>...</p>

</body>
</html>

Syntax 1: Valid, hr nested within address: allowed
Syntax 2: Invalid, hr nested within head, p: not allowed

Note: the hr element breaks on a paragraph level (Syntax 1) and not at intra-paragraph level (Syntax 2)!

hr intro hr browser display hr syntax