时间:2021-07-01 10:21:17 帮助过:25人阅读
15年年末写了篇关于 BEM方法论(实践上内容并不是原BEM)的文章,文末给自己挖了个坑说要聊聊web语义化,跳票至今:joy:。16年第一篇用来填坑好了!
The Semantic Web provides a common framework that allows data to be shared and reused across application, enterprise, and community boundaries. --Wikipedia
语义化Web具备让数据跨终端共享/重用的能力。
对于HTML体系而言,Web语义化是指使用语义恰当的标签,使页面有良好的结构,页面元素有含义,能够让人和机器都容易理解。
OOCSS (Object Oriented CSS)
...a CSS “object” is a repeating visual pattern, that can be abstracted into an independent snippet of HTML, CSS, and possibly JavaScript. That object can then be reused throughout a site. — Nicole Sullivan
...
目标:
减少对HTML结构的依赖
增加CSS class重复性的使用
SMACSS(Scalable and Modular Architecture for CSS)
...an attempt to document a consistent approach to site development when using CSS. — SMACSS
一种css架构风格
BEM(Block,Element,Modular)
The BEM approach ensures that everyone participating in the development of a website is working with the same codebase and using the same terminology — BEM Methodology
与SMACSS类似
METACSS | ATOMCSS (原子CSS)
WTFSS
为什么会有这么多层出不穷(千奇百怪)的CSS设计模式
Cascading Style Sheets (CSS) are a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects like SVG or XHTML). CSS describes how elements should be rendered on screen, on paper, in speech, or on other media. --MDN
CSS本身的不足,不具备逻辑表达能力 & 抽象能力
We had to maintain a shit。。。所以我们需要更有效的去减少让自己恶心的成本。。
但这些都只是部分客观原因, 主要原因在于我们对于Web语义化的理解度不够以及非正确的工作流。
以表现为中心(面向UI) VS 以信息为中心(面向语义)
以表现为中心的工作流: 需求原型 --> UI设计稿 --> 以HTML/CSS实现设计稿
以信息为中心的工作流: 需求原型 --> 分析需求并以HTML描述 --> UI设计稿 --> 分析样式并以CSS实现
两者最大的区别在于,对于面向UI的工作流而言,HTML/CSS只是实现UI的手段,而对于纯正的Web开发(面向语义的工作流)而言,我们应该是以信息为中心的,即首先考虑信息的本质(语义),并以合适的标签来标记,最后再考虑样式和行为(UI)。
之所以会有那么多层出不穷(不知所谓)的CSS设计模式,是因为它们大都是以表现为中心提出的“最佳实践”,而这两种方法论本身又是不适配的。
为什么说面向语义(以信息为中心)才是纯正的Web开发
Web诞生的目的是用于在网络上传递资源跟信息的。HTML设计之初是用来作为互联网上主要的内容载体,其本身是用来描述信息的。在最早期的Web时代,HTML作为一种通用的描述语言用来表述在互联网上传输/共享的文档的信息。Web 万维网
The World Wide Web (WWW) is an open source information space where documents and other web resources are identified by URLs, interlinked by hypertext links, and can be accessed via the Internet.
HTML 作为一种对计算机而言通用易懂的母语
To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may potentially understand.
Web领域的一套基础架构跟技术(包括HTTP、REST、HTML等),是按照语义中心的方式设计出来的。如果采用UI中心的方法论,必然导致阻抗不匹配。
w3c官方也在致力于推广Web语义化
各种表现型标签/属性在HTML5中被废弃/不推荐使用(center、big、width等)
HTML5中新增的各种语义化标签(header、nav等),而这些标签在表现上跟div无二。
CSS语义化?
通常意义上我们说的CSS语义指的是class的语义。class作为HTML与CSS之间的主要钩子,却是被我们误解最深的一个东西。
There are no additional restrictions on the tokens authors can use in the class attribute, but authors are encouraged to use values that describe the nature of the content, rather than values that describe the desired presentation of the content. --w3c
class属性本意是用来描述元素内容的,而不是描述元素展现的。其典型‘反模式’代表就是METACSS。看看这两段代码,哪一个更容易理解?
userName:Kuitos人气教程排行
- 230次 1 如何生成一个调查问卷_html/css_WEB-ITnose
- 230次 2 在页面直接显示日历_html/css_WEB-ITnose
- 230次 3 如何点击a标签实现弹出inputfile上传文件对话框_HTML/Xhtml_网页制作
- 229次 4 关于列表标记的详细介绍
- 229次 5 cssborder-bottom(指定下边线的样式、宽度及颜色)
- 229次 6 html新闻详情页_html/css_WEB-ITnose
- 229次 7 为何页面内容和网页边缘有空隙_html/css_WEB-ITnose
- 228次 8 position:fixed定位时“高度坍塌”问题的解决_html/css_WEB-ITnose
- 227次 9 htmlp标签怎么换行?htmlp标签添加br换行标签的应用
- 226次 10 HTML的<!DOCTYPE>标签
- 226次 11 html页面中友情链接怎么进行添加设置?(代码示例)
- 226次 12 form表单中属性及功能应用介绍汇总
- 226次 13 详解form标签中的method属性
- 226次 14 HTML5Canvas逼真烟雾效果js插件
- 226次 15 页面跳转特效_html/css_WEB-ITnose
- 226次 16 改变鼠标选中区域的样式。_html/css_WEB-ITnose
- 225次 17 关于$("body").append()一段html代码,在页面写能触发事件,写在js文件里写就没有_html/css_WEB-ITnose
- 225次 18 CSS3悬浮动画效果_html/css_WEB-ITnose
- 225次 19 纯C语言实现的CSS解析器:katana_html/css_WEB-ITnose
- 225次 20 body在默认情况下是具有margin外边距的_html/css_WEB-ITnose