Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 376 Bytes

3.2.1. 使用 css3 缩小字体不偏移.md

File metadata and controls

12 lines (8 loc) · 376 Bytes

使用 css3 缩小字体不偏移

通常使用 css3 缩小字体后,文字部分会偏移位置,如,原来左对齐,缩小后发现距离左侧有一段距离,需要设置 transform-origin-x:0

测试使用时对块级元素有效,行内元素无效

    
    -webkit-transform-origin-x: 0;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);