本文介绍了我应该使用< i>标记图标而不是< span&gt ;?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我查看了Facebook的来源,他们使用< i> 标签显示图标。



另外,今天我看了一下Twitter的Bootstrap。它还使用< i> 标签显示图标。



但是,

来自:

为什么他们使用< i> 标签显示图标?

这不是一个坏习惯吗?



或者我在这里丢失了什么?



我正在使用 span

更新:


显示图标,它似乎对我至今仍然有用。

Bootstrap 3现在使用 span 作为图标。

解决方案

可怕的做法。这是性能胜过语义的胜利。


I've looked into the source of Facebook, they use the <i> tag to display icons.

Also, today I looked into Twitter's Bootstrap. It also uses <i> tag to display icons.

But,

From the HTML5 spec:

Why are they using <i> tag to display icons?

Is it not a bad practice?

Or am I missing something here?

I am using span to display icons and it seems to be working for me till now.

Update:

Bootstrap 3 now uses span for icons. Official Doc

解决方案

Because it is:

  • Short
  • i stands for icon (although not in HTML)

Awful practice. It is a triumph of performance over semantics.

这篇关于我应该使用&lt; i&gt;标记图标而不是&lt; span&gt ;?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 03:27