css text-indent equivalent on the right side

前端 未结 6 943
醉话见心
醉话见心 2020-12-31 02:27

I have right-side aligned text and I want it to push it a little bit left like you do with text-indent bur on the right side. Any solution with that? I\'ve been trying with

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-31 03:18

    CSS only solution, does not mess with text direction (SEO and translation friendly?), no floats, no additional elements, width of post-indent is easy to modify:

    &::after {
        content: "\0000a0";
        height: 1em;
        letter-spacing: 1rem;
    }
    

提交回复
热议问题