笔记 | PHP 2012 | 文本控制 | 缩进/对齐/间距

  • 段落缩进 text-indent
text-indent: 3px;
  • 文本对齐 text-align
text-align: left;            // 左对齐, 默认
text-align: right;           // 右对齐
text-align: center;          // 水平居中
  • 文本装饰线 text-decoration
text-decoration: none;         // 常用于: 取消超链接默认的下划线
text-decoration: underline;    // 下划线
text-decoration: overline;     // 上划线
text-decoration: line-through; // 穿越线, 删除线
text-decoration: blink;        // 闪烁, 不推荐使用
  • 字间距 letter-spcing
letter-spacint: 20px;           // 字间距, 字母间距
  • 词间距 word-spacing (对中文无效)
word-spacing: 10px;            // 仅对英文单词有效, 对中文无效
  • 大小写转换 text-transform (对中文无效)
text-transform: uppercase;
text-transform: lovercase;
text-transform: captitalize;  // captitalize 是把首字母大写, 其它字母不受影响

2012_d1_①_024

你可能感兴趣的:(笔记 | PHP 2012 | 文本控制 | 缩进/对齐/间距)