12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!-- 在代码中手动换行输入回车页面是不会换行的不识别 -->
- <!-- 页面中如果想实现换行只能有标签 -->
- hello
- world
- <!-- <p>hello</p>
- <p>world</p> -->
- <!-- <p>hello</p>
- world -->
- <!-- 换行标签 br -->
- hello <br/> world
- </body>
- </html>
|