本文介绍了< b>与< b>的区别是什么?和< strong>,< i>和< em&gt ;?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

/ code>是语义的 - 它描述了它所围绕的文本(例如,这个文本应该比其他文本更强壮),而不是描述

What's the difference between <b> and <strong>, <i> and <em> in HTML/XHTML? When should you use each?

解决方案

They have the same effect on normal web browser rendering engines, but there is a fundamental difference between them.

As the author writes in a discussion list post:

Think of three different situations:

  • web browsers
  • blind people
  • mobile phones

"Bold" is a style - when you say "bold a word", people basically know thatit means to add more, let's say "ink", around the letters until they stand outmore amongst the rest of the letters.

That, unfortunately, means nothing to a blind person. On mobile phonesand other PDAs, text is already bold because screen resolution is very small. You can't bold a bold without screwing something up.

<b> is a style - we know what "bold" is supposed to look like.

<strong> however is an indication of how something should be understood. "Strong" could (and often does) mean "bold" in a browser, but it could also mean a lower tone for a speaking program like Jaws (for blind people) or be represented by an underline (since you can't bold a bold) on a Palm Pilot.

HTML was never meant to be about styles. Do some searches for "Tim Berners-Lee" and "the semantic web." <strong> is semantic—it describes the text it surrounds (e.g., "this text should be stronger than the rest of the text you've displayed") as opposed to describing how the text it surrounds should be displayed (e.g., "this text should be bold").

这篇关于&lt; b&gt;与&lt; b&gt;的区别是什么?和&lt; strong&gt;,&lt; i&gt;和&lt; em&gt ;?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-20 12:33