html实现原样输出,pre与xmp

591 阅读1分钟
  • www.w3school.com.cn/tags/index.…
  • www.w3school.com.cn/tags/tag_pr…
  • 都是预定义格式文本
  •  标签可以保留您需要的文本格式,比如不会取消换行和空格,并且所示文本是等宽的
    
  •  不被推荐使用了
    <!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>
     xmp
    <xmp>
        <div>xmp</div>
    </xmp>
     
     
    pre
    <pre>
        <strong>pre</strong>
    </pre>
    
    </body>
    </html>
    

    image.png