How do I make text reverse direction in HTML?

后端 未结 3 1352
小鲜肉
小鲜肉 2021-01-31 09:25

I am working on a creative website featuring silly limericks. I would like to display each line of the limerick in an alternating direction. That is, I want it in boustophedon f

3条回答
  •  别那么骄傲
    2021-01-31 10:08

    Try this.

    span {
      direction: rtl;
      unicode-bidi: bidi-override;
    }
    who ate fourteen green apples and died.

提交回复
热议问题