我正在学习html5,我写了这段简单的代码:
<!DOCTYPE html>
<html>
<head>
<title>test video</title>
</head>
<body>
<video src="movie.webm" controls/>
<h1>this is a header below the video</h1>
</body>
</html>
视频在屏幕上显示正常,但问题是我无法在视频下方查看<h1>
标记。我在Opera和Firefox中测试过。你知道我在这里缺少什么吗?
答案 0 :(得分:3)
您需要明确关闭<video>
代码:
<body>
<video src="movie.webm" controls></video>
<h1>this is a header below the video</h1>
</body>
这是an example。注意第一个标题是如何显示的,第二个标题不是。
只是为了完整性,这是the spec has to say:
在text / html中标记遗漏:
这两个标签都没有遗漏。