- <hr> 元素表示段落级元素之间的主题转换
- 在 HTML 的早期版本中,它是一个水平线。现在它仍能在可视化浏览器中表现为水平线,但目前被定义为语义上的,而不是表现层面上
实例
<!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>test</title> </head>
<body> <p>This is the first paragraph of text.</p> <hr> <p>This is the second paragraph of text.</p> </body>
</html>
|
浏览器运行结果如下: