搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<html><!DOCTYPE html> <html> <body> <p>Standard pre</p> <pre>This is a standard pre. It will use as much space as it needs.</pre> <p>pre with a fixed width:</p> <div style="width:200px;overflow:auto"> <pre>This is a pre with a fixed width. It will use as much space as specified.</pre> </div> </body> </html>
运行结果