当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <xmp>用法及代码示例


<xmp>标记用于将任何内容创建为字母格式。此<xmp>标记之间的任何文本内容都将在代码部分中以用户类型显示,以相同的宽度,相同的位置结束所有内容,将以键入格式或样式的副本形式显示。

用法:

<xmp> statement </xmp>

属性:此标记不包含任何属性。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML <xmp> Tag</title> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h2>HTML <xmp> tag</h2> 
    </center> 
    <xmp> 
HTML tags are hidden keywords and used to create web pages in different format.  
      Most of the tags contain two parts, opening tags and closing tags. 
    </xmp> 
  
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML <xmp>标记支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera

相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML | <xmp> tag。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。