如何在 HTML 中插入单行断行符?
使用 <br> 标记可以在 HTML 中插入单行断行符。您可以尝试运行以下代码以使用 <br> 标记插入一个换行符 −
示例
<!DOCTYPE html> <html> <head> <title>HTML br Tag</title> </head> <body> <p>This is before the line break<br /> and this after the line break.</p> </body> </html>
广告
使用 <br> 标记可以在 HTML 中插入单行断行符。您可以尝试运行以下代码以使用 <br> 标记插入一个换行符 −
<!DOCTYPE html> <html> <head> <title>HTML br Tag</title> </head> <body> <p>This is before the line break<br /> and this after the line break.</p> </body> </html>