首页 > 作文

通过HTML5规范搞定i、em、b、strong元素的区别

更新时间:2023-04-03 04:09:56 阅读: 评论:0

前言

为了语义化html5增加了不少新标签。其中i、em和b、strong这两组标签是最容易弄混的,不好好去探究一下,还真说不清。这个也是前端面试中经常会问的问题。今天从源头上,也就是从html5的文档(/d/file/titlepic/text-level-mantics.html i element reprents a span of text in an alternate voice or mood, or otherwi offt from the normal pro in a manner indicating a different quality of text, such as a taxonomic designation, a technical ter船海工程m, an idiomatic phra from another language, transliteration, a thought, or a ship name in western texts.

译文:

i 元素代表在普通文本中具有不同语态或语气的一段文本,某种程度上表明一段不同特性的文本,比如一个分类学名称,一个技术术语,一个外语习语,一个音译,一个想法,或者西方文本中的一艘船名。

举例:

// 分类学名称<p>the <i class="taxonomy">felis silvestris catus</i> is cute.</p>// 术语<p>the term <i>pro content</i> is defined above.</p>// 外语习语<p>there is a certain <i lang="fr">je ne sais quoi</i> in the air.</p>

大家可以在i标签上应用class来表明用这个元素的意图,这样该特殊样式在以后如需修改时,不需要仔细检查全部文档来更改。在使用i标签时候时,推荐考虑是否应用其他标签更为合适,如用em来突出强调,dfn标签来定义项目实例。

em介绍

规范描述:

the em element reprents stress emphasis of its contents.

the placement of stress emphasis changes the meaning of the ntence. the element thus forms an integral part of the content. the preci way in which stress is ud in this way depends on the language.

译文:

em 元素代表对其内容的强调。突出强调的位置会改变语句本身的意义。因此,元素构成内容的一个部分。用这种方式表示强调的程度依赖于是何种语言。

举例(类似汉语里面重读某个词表示不同含义):

// 这是一句不带任何强调的句子<p>cats are cute animals.</p>// em 包围 cats,强调猫是种可爱的动物,而不是狗或者其他动物<p><em>cats</em> are cute animals.</p>// em 包围 are,代表句子所说是事实,来反驳那些说猫不可爱的人<p>cats <em>are</em> cute animals.<怎么和女生聊天开场白;/p>// em 包围 cute,强调猫是一种可爱的动物,而不是有人说的刻薄、讨厌的动物<p>cats are <em>cute</em> animals.</p>// 这里强调猫是动物,而不是植物<p>cats are cute <em>animals</em>.</p>

规范末尾note:

the em element isn’t a generic “italics” element. sometimes, text is intended to stand out from the rest of the paragraph, as if it was in a different mood or voice. for this, the i element is more appropriate.

the em element also isn’t intended to convey importance; for that purpo, the strong element is more appropriate.

译文:

em不是一个普通的斜体标签。有时为了部分文本由于不同的语态或语气需有别于段落的其他部分,这是i标签更为合适。em标签不是为了表明重要性,如果是出于这个目的,strong标签更为合适。

b介绍

规范描述:

the b element reprents a span of text to which attention is being drawn for utilitarian purpos without conveying any extra importance and with no implication of an alternate voice or mood, such as key words in a document abstract, product names in a review, actionable words in interactive text-driven software, or an article lede.

译文:

b 元素代表侧重实用目的而不带有任何额外重要性也不暗示不同语态或语气的一段文本,比如一段文本摘要中的关键词、一段审查中的产品名称、文本驱动软件中的可执行语句或者一篇文章的导语。

举例:

// 下面的 b 元素起到突出关键词的作用,但不具备强调重要性的作用<p>the <b>frobonitor</b> and <b>barbinator</b> components are fried.</p>// 下面的 b 元素让被包围的词特殊化<p>you enter a small room. your <b>sword</b> glowsbrighter. a <b>rat</b> scurries past the corner wall.</p>// 下面的 b 元素标注了文章的导语<article>  <h2>kittens 'adopted' by pet rabbit</h2>  <p><b class="lede">six abandoned kittens have found an    unexpected new mother figure — a pet rabbit.</b></p>中国五岳名山  <p>veterinary nur melanie humble took the three-week-old    kittens to her aberdeen home.</p>  ...</article>

规范建议:

the b element shoul农是什么结构d be ud as a last resort when no other element is more appropriate. in particular, headings should u the h1 to h6 elements, stress emphasis should u the em element, importance should be denoted with the strong element, and text marked or highlighted should u the mark element.

就是说当没有其他元素合适时,最后才考虑用b标签。特别是,标题应该使用h1到h6标签,突出对内容的强调用em标签,突出重要紧急用strong标签,文本标记使用mark标签。

那次玩得真高兴strong介绍

规范描述:

the strong element reprents strong importance, riousness, or urgency for its contents.

译文:

strong 元素代表内容的强烈的重要性、严重性或者紧急性。

重要性

<strong> 元素可以被用在标题(heading)、说明(caption)或者段落(paragraph)上,来显示这部分被包围的文字的重要性。

// 章节序号不重要,章节的名字才重要<h1>chapter 1: <strong>the praxis</strong></h1>

严重性

<strong> 元素可以被用来标记警告或者警示标志。

<p><strong>warning.</strong> this dungeon is dangerous.</p>

紧急性

<strong> 元素可以被用来表示需要被尽快看见的部分。

<p>welcome to remy, the reminder system.</p><p>your tasks for today:</p><ul>  <li><p><strong>turn off the oven.</strong></p></li>  <li><p>put out the trash.</p></li>  <li><p>do the laundry.</p></li></ul>

小结:

根据规范来看,em和strong的语义情景很明显,b和i的理解还是有些晦涩,个人的理解是:

1、em会对文本含义有改变作用,类似读一句话时重读某一个字或词会表达不一样的意思一样。

2、strong会突出包含文本的重要性、严重性和紧急性等。

3、i标签为了表示不同语态或特性的文本,有点像文字排版里面的那些用斜体表示的内容(技术术语、外语习语这些排版会有不同的内容)。

4、b标签主要是为了突出显示关键词、产品名称等;

b标签的语义规范也是很模糊,所以也是不太建议用。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对www.887551.com的支持。

本文发布于:2023-04-03 04:09:50,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/d88a702386ebb301a83aab082b1dc603.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:通过HTML5规范搞定i、em、b、strong元素的区别.doc

本文 PDF 下载地址:通过HTML5规范搞定i、em、b、strong元素的区别.pdf

标签:标签   元素   文本   语义
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图