HTML 段落
HTML段落是通过 <p> 标签进行定义的,浏览器会自动地在段落的前后添加空行
<!DOCTYPE HTML> <html> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <p>This is another paragraph.</p> <!-- 在段落中,所有连续的空格或空行都会被算作一个空格 --> </body> </html>
效果如下:
This is a paragraph.
This is another paragraph.
This is another paragraph.
如果想显示多空格或换行,可以用 <pre> 标签:
<!DOCTYPE HTML> <html> <body> <pre> 这是预格式文本, 它保留了 空格 和换行。 </pre> <p> 预格式文本很适合用来显示计算机代码:</p> <pre> def fun(): print('hello world!') print('Welcome to HTML!') </pre> </body> </html>
效果如下:
这是预格式文本, 它保留了 空格 和换行。
预格式文本很适合用来显示计算机代码:
def fun(): print('hello world!') print('Welcome to HTML!')