css text-indent equivalent on the right side

前端 未结 6 944
醉话见心
醉话见心 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条回答
  •  北海茫月
    2020-12-31 03:06

    Do the following

    text-indent: 60px;
    direction: rtl;
    text-align: left;
    

    f.ardelian pointed out: Punctuation will appear at the beginning of the line so abc. will appear .abc

提交回复
热议问题