Lesson 2: Dive Into Typography (排版)

排版是字的艺术,是关于字的一切:字体、字号、行高、行长、字重(斜体/加粗/正常)、字距(kerning)、行距(leading)可读性……

Article 1: Typography Essentials – A Getting Started Guide (排版要点——一个入门指南)

这篇文章所说的很多都不适用于中文。

基础

  • The Type Size, also called the Cap Height, is the overall height of capital letters in the formation of words.
  • The Ascender is the upward tail on letters like h, l, t, b, d, and k.
  • The Descender is the downward tail for letters like g, q, and y.
  • The Counter is the white space located inside letters like o and p.
  • The X Height is the height of the letter, and does not include ascenders or descenders.
  • Baselines are the boundary that the lowest part of the letter rests on. Take a look at the y, p, g, p and y letters in the illustration above. The solid line they are resting on is the baseline.

  • Kerning: 字距。
  • Leading: 行距。

  • left alignment
  • center alignment
  • Right alignment 显得正式。
  • Justified alignment: 左右对齐。避免出现 tracking, 也叫 river).

Type Category(字体分类)

  • Serif: 衬线体。这种字体在长段的时候更易读,而且传统。(如果没有特别制定,绝大多数程序都把 Times New Roman style 作为默认字体。是衬线体。)
  • San-Serif: 无衬线体。这种字体的粗体作为 labeling、headlines、titles。也易读,但是更有现代的感觉。
  • Script, symbols and decorative type: 手写体、符号、装饰体通常用于具体的图像和信息。(婚礼可能使用更瘦更流畅的字体,小孩生日

    Lesson 2: Dive Into Typography (排版)的更多相关文章

    1. compass typography 排版 常用排版方法[Sass和compass学习笔记]

      Bullets 用来定义ul li 相关的样式 no-bullet  关闭 li的默认样式 那个小圆点 no-bullets 作用域ul 调用no-bullet 函数 不过用了reset 后 默认没有 ...

    2. [No000026]365种创业、办公、和生活成长的精华资源

      只需要具备以下技能,人人都可以成为企业家:经得起失败的考验,思维活跃,新点子不断,能够脚踏实地把新点子转化为产品,并在这个过程中坚持不懈,百折不挠,即使跌倒了,也要及时从失败中学习,迅速投入到下一次冒 ...

    3. 标准化css属性顺序

      前言 对于css文件而言,选择器的写法有它的讲究,如—— 1> 不要用ID选择器 2> 不要用通配符*选择器 3> 选择器的层级 ...... 对于属性值的写法也有他的讲究,如—— ...

    4. [Typescript] Introduction to Generics in Typescript

      If Typescript is the first language in which you've encountered generics, the concept can be quite d ...

    5. 阅读MDN文档之StylingBoxes(五)

      目录 BoxModelRecap Box properties Overflow Background clip Background origin Outline Advanced box prop ...

    6. normalize.css 中文版

      ## normalize.css 中文版 normalize.css 原地址:http://necolas.github.io/normalize.css/reset 太暴力了,这个 normaliz ...

    7. 使用HTML5和CSS3碎语

      当我们使用HTML5, CSS3,甚至Bootstrap设计网站的时候,有些方面是必须考虑的,比如字体大小,标题大小,行间距,每行字数,字体,颜色,背景图片和文字的搭配,图标,留白和布局......所 ...

    8. table中的td自动换行

      总有那么几个时候会觉得,table的td不能自适应换行真坑,凭什么只能用tr来换行,经常数据都是连在一起的呀,你叫我怎么把它拆分放到tr里...... 那能不能用ul和li来替换?可以是可以,不过有时 ...

    9. normalize.css v2.1.2 翻译

      /*! normalize.css v2.1.2 | MIT License | git.io/normalize */ /* /*! 我就是自己看看,然后翻译下下,让大家看看 */ /* ===== ...

    随机推荐

    1. [转]PageRank算法

      原文引自: 原文引自: http://blog.csdn.net/hguisu/article/details/7996185 感谢 1. PageRank算法概述 PageRank,即网页排名,又称 ...

    2. Bencode编码解析的C++实现

      Ben编码的基本规则 B编码中有4种类型:字符串.整型.列表.字典. 字符串 字符串的编码格式为:<字符串的长度>:<字符串>,其中<>括号中的内容为必需.例如,有 ...

    3. 晓说智能指针shared_ptr为何可以实现跨模块分配和释放内存

      最近做项目, 有个地方是外包人员写的, 其中有个函数,大致这样 void getInfo(std::shared_ptr<Info>& outInfo); 这个函数是一个dll(链 ...

    4. Windows 中JDK安装配置教程

      1.准备工作 a.因为Java JDK区分32位和64位系统,所以在安装之前必须先要判断以下我们的系统为多少位系统.右键计算机-属性查看,我安装的是64位 b.下载JDK,地址:http://www. ...

    5. C#中的委托和事件2-1(转)

        PDF 浏览:http://www.tracefact.net/Document/Delegates-and-Events-in-CSharp.pdf引言 委托 和 事件在 .Net Framew ...

    6. LRU缓存算法 - C++版

      LRU是Least Recently Used的缩写,意思是最近最少使用,它是一种Cache替换算法. 实现思路: hashtable + 双向链表 时间复杂度: 插入,查找,删除:O(1) 空间使用 ...

    7. IRP派遣操作

      IRPTrace工具跟踪IRP 派遣函数(Dispathc Funtion)是windows驱动中的重要概念.驱动程序的主要功能是负责处理I/O请求,其中大部分I/O请求是在派遣函数中处理的.用户模式 ...

    8. pdf转图片

      public class FileUtil { public static void main(String[] args) { try { System.out.println(System.cur ...

    9. ThreadLocal<T>类

      ThreadLocal<T>类                                        -------每个线程有仅拥有一个T对象                   ...

    10. NGINX结合SHELL统计用户的UV及IP汇总

      公司新的需求,怀疑PV和IP的比例不对,看是不是有恶意的东东: NGINX配置: log_format main '$remote_addr - $remote_user [$time_local] ...