w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



br nested within elements

Classified as: flow content, phrasing content

Parents, br

Children, br

Examples: br parents

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

<p> ... <br> ... <br> ...</p>

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

</body>
</html>

Syntax 1: Valid, multiple br elements allowed per HTML5 document; br nested inside p: allowed
Syntax 2: Invalid, br nested inside head: not allowed

br intro br optional br browser display br syntax