--- title: slug: Web/HTML/Element/tt translation_of: Web/HTML/Element/tt ---
{{ obsolete_header() }}

概述

HTML 电报文本元素 (<tt>) 产生一个内联元素,使用浏览器内置的 monotype 字体展示。这个元素用于给文本排版,使其等宽展示,就像电报那样。使用 {{ HTMLElement("code") }} 元素来展示等宽文本可能更加普遍。

这个元素已废弃。使用更加适当的元素,例如带有 CSS 的 {{ HTMLElement("code") }} 或者 {{ HTMLElement("span") }} 来代替。

属性

这个元素除了全局属性之外,没有其它属性,所有元素都一样。

DOM 接口

这个元素实现了 {{domxref('HTMLElement')}} 接口。

实现注解: Gecko 1.9.2(包含)之前, Firefox 为这个元素实现了 {{domxref('HTMLSpanElement')}} 接口。

示例

<p>Enter the following at the telnet command prompt: <code>set localecho</code><br />

The telnet client should display: <tt>Local Echo is on</tt></p>

结果

Enter the following at the telnet command prompt: set localecho
The telnet client should display: Local Echo is on

另见

{{ HTMLRef }}