w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



cite nested within elements, elements nested within cite

Classified as: flow content, phrasing content, palpable content

Parents, cite

Children, cite

Examples: cite parents, cite children

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

<p>
<cite>...</cite>
</p>

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

<p>
<cite><a>...</a></cite>
</p>

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

<cite>
<article>...</article>
</cite>

</body>
</html>

Syntax 1: Valid, cite nested inside p: allowed
Syntax 2: Valid, a nested inside cite: allowed
Syntax 3: Invalid, cite nested inside head: not allowed; ⁄ article nested inside cite: not allowed

cite intro cite browser display cite syntax