这些废弃的 HTML 标签不要用

简介:

HTML 已经发展了多年,现在 W3C 已经发布了 HTML 5.1 的提案推荐标准,一些陈旧废弃的标签已经在后继的标准中逐渐消失。这里为大家列出那些已经被废弃 HTML 标签,看看你是不是还在使用它们。

<acronym>

首字母缩写,例如 WWW

类似的有<abbr>标签,表示单词缩写,例如 <abbr>inc.</abbr>。语法如下:

 
  1. <acronym title="World Wide Web">WWW</acronym>
  2. <abbr title="incorporated">inc.</abbr>

推荐用<abbr>,不要用<acronym>(忽略上面提到的语义上的差异)。

<applet>

Java 小应用程序,主要提供绘图功能(在页面上通过代码绘制一些东西),例如:

 
  1. <applet code="ShowImage.class" width=600 height=400 archive="Imagetest.jar"></applet>

目前几乎没什么用了,因为运行需要 JRE,而目前主流浏览器并不默认安装 JRE。

推荐使用<canvas>绘图,或者用<object>+<embed>嵌入 flash代替<applet>

注意:使用<object>+<embed>是为了更好的兼容性,如果场景允许,推荐使用<object>

<basefont>

<basefont>标签定义基准字体。该标签可以为文档中的所有文本定义默认字体颜色、字体大小和字体系列,例如:

 
  1. <basefont color="red" size="5" face="Arial" />

<basefont>标签只有 IE 支持。

推荐直接给<body>元素定义默认字体,所有子元素都会继承这些属性值。

<bgsound>

用来添加背景音乐,例如:

 
  1. <bgsound src="your.mid" autostart="true" loop="infinite">

推荐使用<audio>或者<object>+<embed>来代替,例如:

 
  1. <embed src="your.mid" autostart="true" loop="true" hidden="true">

<big>

用来放大字体,放大一号(嵌套多层可以放大更多),不支持的浏览器显示粗体,例如:

 
  1. <big>大1号</big><big><big>大2号</big></big>

至于“号”是怎么定义的就别管了,不推荐使用,建议根据语义采用<em><strong>或者自定义样式类代替。

<blink>

可以实现闪烁效果,例如:

 
  1. <blink>Why would somebody use this?</blink>

支持性很差,不推荐使用,同样不推荐使用(各大浏览器支持<blink>,但没有任何效果):

<p>This should be avoided as well.</p>

建议采用<animation>代替

<center>

使内容居中,例如:

 
  1. <center>文本及子元素会居中</center>

效果类似于如下 CSS:

 
  1. text-align: center;

不建议使用,确实没有任何理由去用。

<dir>

目录列表,例如:

 
  1. <dir>
  2. <li>html</li>
  3. <li>xhtml</li>
  4. <li>css</li>
  5. </dir>

效果和<ul>基本相同,浏览器默认样式下列表项的左边距有细微差异。

不推荐使用,建议根据语义采用<ul><ol>或者<dl>

<font>

用来定义字体、字号和颜色,例如:

 
  1. <font face="verdana" color="green" size="3">This is some text!</font>

属性值和<basefont>一样。

不推荐使用,建议用 CSS 代替,没理由用这个标签。

<frame>

配合<frameset>分栏,例如:

 
  1. <!DOCTYPE html>
  2. <html>
  3. <frameset cols="25%,*,25%">
  4. <frame src="frame_a.htm">
  5. <frame src="frame_b.htm">
  6. <frame src="frame_c.htm">
  7. </frameset>
  8. </html>

注意:用<frameset>替换掉<body>

复杂的后台页面会用到<frameset>+<frame>布局,当然也可以采用 float/flex+Ajax 实现,根据具体场景来定。

<frameset>

<frame>

<hgroup>

给一系列标题分组,例如:

 
  1. <hgroup>
  2. <h1>The reality dysfunction</h1>
  3. <h2>Space is not the only void</h2>
  4. </hgroup>

虽然提供了一点语义,但因为已经过时,所以不推荐使用。

建议采用<header>代替,例如:

 
  1. <header>
  2. <h1>The reality dysfunction</h1>
  3. <p class="subheading">Space is not the only void</p>
  4. </header>

<isindex>

单行文本控件,初始显示prompt属性值,例如:

 
  1. <isindex prompt="string" />

目前支持性很差,不推荐使用,建议用<input>元素代替。

W3C 建议千万不要用:

No, really, don’t use it. This element is deprecated. It is not implemented anymore.

具体用法可以参考 http://reference.sitepoint.com/html/isindex

<listing>

不用管它是什么,微软都不建议使用了:

This element is obsolete and should no longer be used. Use HTMLPreElement, code or CSS instead. Renders text in a fixed-width font.

<marquee>

滚动字幕,效果很强大,例如:

 
  1. <marquee bgcolor="#ccffff" vspace="10" direction="up" height="104" width="22.35%" loop="3" scrollamount="1" scrolldelay="10" hspace="20">
  2. <p align="center"><font color="#000000">此处输入滚动内容</font></p></marquee>
  3. <marquee>这里是输入文字的地方,还可以放图片代码、Flash动画代码和gif动态小图代码。</marquee>

多用来实现公告,虽然已经过时了,但效果确实很强大,而且支持性良好。

<multicol>

用来实现多列布局,不建议使用,任何主流浏览器都不曾支持过。

MDN 称其从未被任何主流浏览器支持过:

The HTML element was an experimental element designed to allow multi-column layouts. It never got any significant traction and is not implemented in any major browsers.

<nextid>

作用未知,支持性未知,不建议使用。

<nobr>

禁止换行,例如:

 
  1. <p>Our telephone number is <nobr>0800 123 123 123</nobr>.</p>

不推荐使用,建议用 CSS 代替:

 
  1. white-space: nowrap;

<noembed>

在浏览器不支持<embed>时,显示内容,类似于<noscript>,例如:

 
  1. <noembed>
  2. <img src="/images/inflate.jpg" alt="Inflate the tyre by holding the
  3. pump at 90 degree angle to the valve">
  4. <p>You can inflate the tyre by holding the pump at 90 degree angle
  5. to the valve, as shown in the image above.</p>
  6. </noembed>

不推荐使用,如果需要考虑兼容性的话,建议采用<object>+<embed>+<noembed>(embed / noembed 作为 object 的回退)。

<noframes>

在浏览器不支持<frameset>+<frame>时,显示内容,类似于<noscript>,例如:

 
  1. <html>
  2. <frameset cols="25%,50%,25%">
  3. <frame src="frame_a.htm">
  4. <frame src="frame_b.htm">
  5. <frame src="frame_c.htm">
  6. <noframes>Sorry, your browser does not handle frames!</noframes>
  7. </frameset>
  8. </html>

<noframe>标签中可以包含任何能够出现在<body>中的标签。

如果需要考虑兼容性的话,可以作为<frame>的回退,建议采用 float/flex + Ajax 实现,根据具体场景来定。

<plaintext>

忽略内容中的html标签,作用类似于<pre>,例如:

 
  1. <p>The markup for this is:</p>
  2. <plaintext>
  3. <h1>Main heading goes here</h1>
  4. <p>First paragraph goes here</p>
  5. <h2>Sub-heading goes here</h2>
  6. </plaintext>.
  7. </body>
  8. </html>

不推荐使用,建议根据语义用<pre>或者<code>代替。

<spacer>

插入空白white spaces,例如:

 
  1. <span>Just a text node</span>
  2. <spacer type="horizontal" size="10"></spacer>
  3. <span>Just another text node</span>
  4. <spacer type="block" width="10" height="10"></spacer>

主流浏览器都不支持,不推荐使用。

<strike>

删除线,效果类似于<del><s>,例如:

 
  1. <p>Version 2.0 is <strike>not yet available!</strike> now available!</p>

不推荐使用,建议用<del>代替。

<tt>

键盘输入(teletype),例如:

 
  1. <p><tt>Teletype text</tt></p>

不推荐使用,建议根据语义用<kbd>(键盘按键)、<var>(变量)、<code>(代码)、<samp>(样例输出)或者CSS代替。

<xmp>

80 列的样例输出,样式效果类似于<pre>,语义类似于<samp>,例如:

 
  1. <xmp>
  2. Stock ID Description Price Quantity in Stock
  3. -------- ----------- ----- -----------------
  4. 116 Inflatable Armchair 21.50 13
  5. 119 Walkie Talkie 40.20 44
  6. </xmp>

目前浏览器支持该标签,但不限制 80 列。

原文发布时间为:2016-10-17

本文来自云栖社区合作伙伴“Linux中国”

相关文章
|
15天前
|
移动开发 搜索推荐 HTML5
如何使用HTML5的语义化标签来提高网站的可访问性?
【4月更文挑战第1天】如何使用HTML5的语义化标签来提高网站的可访问性?
22 1
|
1月前
HTML文档基础标签(2)
HTML文档基础标签(2)
|
1月前
|
数据采集 前端开发 JavaScript
html 页面里 noscript 标签的作用介绍
html 页面里 noscript 标签的作用介绍
29 0
|
2月前
|
小程序
微信小程序中识别HTML标签的方法
微信小程序中识别HTML标签的方法
|
1月前
HTML常用标签
HTML常用标签
|
4天前
|
前端开发 搜索推荐 数据安全/隐私保护
HTML标签详解 HTML5+CSS3+移动web 前端开发入门笔记(四)
HTML标签详解 HTML5+CSS3+移动web 前端开发入门笔记(四)
13 1
|
15天前
|
移动开发 搜索推荐 开发者
HTML5中的语义化标签有哪些?
【4月更文挑战第1天】HTML5中的语义化标签有哪些?
9 0
HTML5中的语义化标签有哪些?
|
18天前
|
存储 移动开发 前端开发
html的常用标签
【4月更文挑战第1天】html的常用标签
19 4
|
1月前
如何在HTML中添加标签
如何在HTML中添加标签【2月更文挑战第26天】
33 5