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

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

作者: Say哥 | 来源:发表于2020-12-13 14:50 被阅读0次
    text-indent: 3px;
    
    text-align: left;            // 左对齐, 默认
    text-align: right;           // 右对齐
    text-align: center;          // 水平居中
    
    text-decoration: none;         // 常用于: 取消超链接默认的下划线
    text-decoration: underline;    // 下划线
    text-decoration: overline;     // 上划线
    text-decoration: line-through; // 穿越线, 删除线
    text-decoration: blink;        // 闪烁, 不推荐使用
    
    letter-spacint: 20px;           // 字间距, 字母间距
    
    word-spacing: 10px;            // 仅对英文单词有效, 对中文无效
    
    text-transform: uppercase;
    text-transform: lovercase;
    text-transform: captitalize;  // captitalize 是把首字母大写, 其它字母不受影响
    

    2012_d1_①_024

    相关文章

      网友评论

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

          本文链接:https://www.haomeiwen.com/subject/gwxpgktx.html