10_换行标签.html 496 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <!-- 在代码中手动换行输入回车页面是不会换行的不识别 -->
  10. <!-- 页面中如果想实现换行只能有标签 -->
  11. hello
  12. world
  13. <!-- <p>hello</p>
  14. <p>world</p> -->
  15. <!-- <p>hello</p>
  16. world -->
  17. <!-- 换行标签 br -->
  18. hello <br/> world
  19. </body>
  20. </html>