|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Resig在2008年在其博客中介绍过HTML5的data-属性,现如今HTML5在如火如荼地推广,似乎国内的技术有些延迟,这篇博文可以在这里找到。关于语义化,不是一句两句就可以申明白的,并且如今也没有一个官方的很严厉的界说。关于<blockquote>没有争议的是:
1.援用一段较长的笔墨
2.可使用cite标签大概属性
成绩是<blockquote>援用的笔墨必需利用块级元素将他包括吗?
起首是来自W3C的注释
9.2.2Quotations:TheBLOCKQUOTEandQelements<!ELEMENTBLOCKQUOTE--(%block;|SCRIPT)+--longquotation--><!ATTLISTBLOCKQUOTE%attrs;
--%coreattrs,%i18n,%events--cite
%URI;
#IMPLIED--URIforsourcedocumentormsg--><!ELEMENTQ--(%inline;)*
--shortinlinequotation--><!ATTLISTQ%attrs;
--%coreattrs,%i18n,%events--cite
%URI;
#IMPLIED--URIforsourcedocumentormsg-->
这两个便签指名包括的内容为援用笔墨.BLOCKQUOTE用于长笔墨的援用(block-levelcontent)而Q用于漫笔字的援用(inlinecontent)且不同意援用的句子不完全。
这个例子的笔墨来自"TheTwoTowers",作者J.R.R.Tolkien,最为援用笔墨.<BLOCKQUOTEcite="http://www.mycom.com/tolkien/twotowers.html"><P>Theywentinsinglefile,runninglikehoundsonastrongscent,andaneagerlightwasintheireyes.NearlyduewestthebroadswathofthemarchingOrcstrampeditsuglyslot;thesweetgrassofRohanhadbeenbruisedandblackenedastheypassed.</P></BLOCKQUOTE>
http://www.456bereastreet.com/lab/developing_with_web_standards/structure/
这篇文章是使用web尺度举行开辟,内里提到了关于一些TAGS的语义上面摘录的是<blockquote>
Forlongerquotationsthatformoneormoreparagraphs,the<blockquote>elementshouldbeused.CSScanthenbeusedtostylethequotation.Notethattextisnotalloweddirectlyinsidea<blockquote>element–itmustbecontainedinanelement,usuallya<p>element.
Example:<blockquotecite="http://www.w3.org/TR/1999/REC-html401-19991224/struct/text.html"><p>“Thefollowingsectionsdiscussissuessurroundingthestructuringoftext.Elementsthatpresenttext(alignmentelements,fontelements,stylesheets,etc.)arediscussedelsewhereinthespecification.Forinformationaboutcharacters,pleaseconsultthesectiononthedocumentcharacterset.”</p></blockquote>
http://24ways.org/advent/transitional-vs-strict-markup
这篇文章是关于transitional-vs-strict,过渡型和尺度型xhtml的区分,内里提到了内容模子的区分,有关于<blockquote>的内容,在strict中,援用的内容必需利用块级元素将其包括,一般是<p>,<div>中。
Contentmodeldifferences
Anelementtype’
12下一页
WHATWG版和W3C版的HTML5规范虽然根源相同,在一些领域却已经产生分歧。 |
|