Tianhe Gao

Web 编程指南 from mdo

开发一致的、灵活的、可持久的 HTML 和 CSS。

黄金法则

强化既有规则,在任何时候都遵循这些规则。在小项目和大项目中寻找错误。

Every line of code should appear to be written by a single person, no matter the number of contributors.

不论贡献者多少,确保自己审核过每一行代码。

HTML

语法

  • 不要大写标签,包括 doctype(为什么?)。
  • 使用两个空格的软制表符——这样能保证代码在任何环境下格式都一致。
  • 嵌套元素彼此应缩进一次(两个空格)。
  • 总是在属性上使用双引号。
  • 不要在自闭和标签上加反斜线(=/=)——HTML5 标准说这是可选项。
  • 不要省略可选的闭合标签(比如,=</li>= 或 =</body>=)。
 1<!doctype html>
 2<html>
 3  <head>
 4    <title>Page Title</title>
 5  </head>
 6  <body>
 7    <img src="images/logo.png" alt="logo">
 8   	<h1 class="hello-world">Hello, World!</h1>
 9  </body>
10</html>

HTML5 文档类型

强化标准模式并尽可能在每个浏览器呈现一致的内容。保持小写。

1<!doctype html>
2...

语言属性

来自 HTML5 标准:

网页作者被鼓励添加语言属性,赋予文档语言。这可以帮助语音合成工具选择正确的发音,翻译工具选择正确的语言等等。

可在标准中读到更多关于 lang 的内容。在 IANA 可以看到语言代码列表

1<html lang="en">
2</html>

IE 兼容模式

随着 Internet Explorer 的日渐衰退,不再需要添加 <meta> 以维持对 IE 的兼容,除非需要兼容 IE10 及其以前的版本。这个标签在 IE11 中弃用,不再在 Microsoft Edge 中使用(除非在传统浏览器中)。

1<!-- IE10 and below only -->
2<meta http-equiv="x-ua-compatible" content="ie=edge">

字符编码

正确的字符编码可以节省很多字符,书写 - 而不是 &emdash;

对于一些保留的 XML 符号,仍需使用 HTML 实体。

1<head>
2  <meta charset="utf-8">
3</head>
4<body>
5</body>

包含 CSS 和 JS

HTML 标准:

1<link rel="stylesheet" href="style.css">
2<style>
3</style>
4<script src="script.js"></script>

Practicality over purity

Strive to maintain HTML standards and semantics, but not at the expense of practicality. Use the least amount of markup with the fewest intricacies whenever possible.

1<!-- Good -->
2<button>...</button>
3
4<!-- Not good -->
5<div class="btn" onClick="...">...</div>

属性顺序

HTML 属性的大致较容易记忆的顺序:

  • class
  • id, name
  • data-*
  • src, for, type, href, value
  • title, alt
  • role, aria-*
  • tabindex
  • style

以上的总结:

识别元素的属性 –> 确定元素唯一性 –> 可访问性、样式相关属性

1<a class="..." id="..." data-toggle="modal" herf="#">Example link</a>
2
3<input class="form-control" type="text">
4
5<img src="..." alt="...">

布尔属性

布尔属性不需要一般的值。在 XHTML 中还需要声明值,在 HTML5 中完全不需要。

1<input type="text" disabled>
2
3<input type="checkbox" value="1" checked>
4
5<select>
6  <option value="1" selected>1</option>
7</select>

降低标签数量

无论何时都不写多余的 HTML 标签。很多情况下,这需要多次迭代和重构,但是值得这样做,因为它会减少 HTML 的标签数量。

1<!-- Not so great -->
2<span class="avatar">
3  <img src="...">
4</span>
5
6<!-- Better -->
7<img class="avatar" src="...">

配置好编辑器

  • Use soft-tabs set to two spaces.
  • Trim trailing white space on save.
  • Set encoding to UTF-8.
  • Add new line at end of files.

考虑维护一个 .editorconfig

 1# editorconfig.org
 2
 3root = true
 4
 5[*]
 6charset = utf-8
 7end_of_line = lf
 8indent_size = 2
 9indent_style = space
10insert_final_newline = true
11trim_trailing_whitespace = true

CSS

语法

  • 使用带有两个空格的软制表符——这能保证代码能够在任何环境下正常展示
  • , 分隔多个选择器时,让每个选择器单列一行
  • CSS block 的开括号前留一个空格,为了容易辨识
  • 在新的一行书写 CSS block 的闭括号
  • 在每个属性声明 : 后留一个空格
  • 每个声明应尽量保持在自己的特定行,以便获得正确的异常报告
  • 每个声明的最后以 ; 结尾
  • 如果属性值很复杂,需要使用 , 。那么 , 之后需要一个空格
  • 对于颜色属性来说,使用 rgb(255 255 255 / .5) 这种格式
  • 不要再小数点前前缀一个 0,使用 .5 而不是 0.5
  • 小写所有的 16 进制数值。Lowercase letters are much easier to discern when scanning a document as they tend to have more unique shapes
  • 如果可以,使用 3 位 16 进制表示颜色,使用 #fff 而不是 #ffffff
  • 为选择器中的属性值添加引号,=input[type="text"]= 。只在特定情况下可省略引号
  • 避免为 0 指定单位,使用 margin: 0; 而不是 margin: 0px;
 1// Bad CSS
 2.selector, .selector-secondary, .selector[type=text]{
 3    padding:15px;
 4  margin: 0px 0px 15px;
 5  background-color: rgba(0, 0, 0, 0.5);
 6  box-shadow: 0px 1px 2px #CCC,inset 0 1px 0 #FFFFFF}
 7
 8// Good one
 9.selector,
10.selector-secondary,
11.selector[type="text"] {
12  padding: 15px;
13  margin-bottom: 15px;
14  background-color: rgb(0 0 0 / .5);
15  box-shadow: 0 1px 2px #ccc, inset 0 1px 0 #fff;
16}

声明顺序

属性声明的顺序:

  • 位置
  • 盒子模型
  • 字体
  • 视觉
  • 其余杂项
 1.declaration-order {
 2  // Positioning
 3  position: absolute;
 4  top: 0;
 5  right: 0;
 6  bottom: 0;
 7  left: 0;
 8  z-index: 100;
 9      
10  // Box model
11  display: flex;
12  flex-direction: column;
13  justify-content: center;
14  align-items: center;
15  width: 100px;
16  height: 100px;
17      
18  // Typography
19  font: normal 14px "Helvetica Neue", sans-serif;
20  line-height: 1.5;
21  color: #333;
22  text-align: center;
23  text-decoration: underline;
24      
25  // Visual
26  background-color: #f5f5f5;
27  border: 1px solid #e5e5e5;
28  border-radius: 3px;
29      
30  // Misc
31  opacity: 1;
32}

逻辑属性

逻辑属性是一种快捷方式,能够节省很多代码。

默认情况下,block 指代垂直方向(上和下),inline 指代水平方向(左右)。

逻辑属性帮助我们为重新排列文本后的文本加入样式。

 1// Without logical properties
 2.element {
 3  margin-right: auto;
 4  margin-left: auto;
 5  border-top: 1px solid #eee;
 6  border-bottom: 1px solid #eee;
 7}
 8
 9// With logical properties
10.element {
11  margin-inline: auto;
12  border-block: 1px solid #eee;
13}

颜色

  • 使用 rgba() 而非 rgb()
  • 使用 rgba(255 255 255 / .5) 而非 rgba(255, 255, 255, .5)
  • 确保网页中的颜色满足对比度
1.element {
2  color: rgba(255 255 255 / .65);
3  background-color: rgba(0 0 0 / .95);
4}

避免使用 @import

<link> 相比, @import 更慢,会增加多余的请求,导致一些意料之外的问题。解决方法:

  • 使用 <link> 元素
  • 使用 Sass 或 Less 将 CSS 放入一个文件里
  • 利用环境提供的可利用的部分简化 CSS

阅读更多

1<!-- Use link elements -->
2<link rel="stylesheet" href="core.css">
3
4<!-- Avoid @imports -->
5<style>
6@import url("more.css")
7</style>

Media query 位置

尽可能将其放在靠近所设置的元素的近处。不要将它们放在一个文件里或文档的结束。

1.element {...}
2.element-avatar {...}
3.element-selected {...}
4
5@media (min-width: 35em) {
6  .element {...}
7  .element-avatar {...}
8  .element-selected {...}
9}

单个声明

单个声明的 CSS block 放在一行。

1.span1 { width: 5rem; }
2.span2 { width: 5rem; }
3.span3 { width: 5rem; }

多个声明的 CSS block 分行。

1.sprite {
2  display: inline-block;
3  width: 16px;
4  height: 15px;
5  background-image: url("./img/sprite.png");
6}

速记标识

有些速记表示需要显式设置所有值。频繁使用的速记属性:

  • padding
  • margin
  • font
  • background
  • border
  • border-radius

不应过度使用速记属性。

MDN 的一篇文章介绍里使用速记属性可能出现的问题。

预处理器中的嵌套

尽可能避免任何不必要的嵌套——保持 CSS 的简单和避免反向嵌套。只有当你确实需要将样式范围限定在某个选择器上并且有多个元素嵌套在一起。

1// Without nesting
2.table > thead > tr > th {...}
3.table > thead > tr > th {...}
4
5// With nesting
6.table > thead > tr {
7  > th {...}
8  > td {...}
9}

阅读更多

预处理器中的操作符

为了可读性,用小括号包裹数学运算符,并在数值、变量和运算符间添加空格。

1// Bad example
2.elem {
3  margin: 10px 0 @variable*2 10px;
4}
5
6// Good example
7.elem {
8  margin: 10px 0 (@variable * 2) 10px;
9}

注释

确保代码是描述性的、有着不错注释的内容。能够被他人轻易理解的。好的注释能够表达上下文或目的。不要简单地重述一个组件或类名。用于实际使用的代码不加注释。

写大段评论时,句子要写完整。用简洁的短语进行一般注解。

 1// Bad example
 2// Modal header
 3.modal-header {
 4  ...
 5}
 6
 7// Good example
 8// Wrapping element for .modal-title and .modal-close
 9.modal-header {
10  ...
11}

类名

  • 使用小写,且用连字符分隔
  • 避免过多和任意的速记符号
  • 保持类名的短和简洁
  • 使用有意义的名字;使用结构化、目的化而非展示性的名字
  • 基于最近的父类或基类使用前缀类名
  • 使用 .js-* 表示行为,但不要放在 CSS 中

以上规则也适用于创建自定义属性和预处理器变量名。

1// Bad example
2.t {...}
3.red {...}
4.header {...}
5
6// Good example
7.tweet {...}
8.important {...}
9.tweet-header {...}

选择器

  • 使用类选择器好过元素选择器
  • 避免在相同的组件使用多个选择器,这会严重影响浏览器加载网页的速度
  • 让选择器的名字尽可能短,并且努力降低选择器的数量到 3 个
  • 只在必要时,设置选择器包括父类

阅读更多:

1// Bad example
2span {...}
3.page-container #stream .stream-item .tweet .tweet-header .username {...}
4.avatar {...}
5
6// Good example
7.avatar {...}
8.tweet-header .usrname {...}
9.tweet .avatar {...}

子选择符和后代选择器

使用 > 能够将样式限制在嵌套的最接近的子元素。

1.custom-table > tbody > tr > td,
2.custom-table > tbody > tr > th {
3  /* ... */
4}

组织

  • 将样式按不同的组件组合
  • 建立一个一致的注释层次结构
  • 分割组件时,在彼此之间留下一致的空白符比较好
  • 使用多个 CSS 文件时,将它们按组件划分而非页面,页面需要被重新布局,而组件只需要移动即可
 1//
 2// Component section heading
 3//
 4
 5.element { ... }
 6
 7
 8//
 9// Component section heading
10//
11// Sometimes you need to include optional context for the entire component. Do that up here if it's important enough.
12//
13
14.element { ... }
15
16// Contextual sub-component or modifer
17.element-heading { ... }

No notes link to this note

Welcome to tell me your thoughts via "email"
UP