HTML Direction rtl issue

前端 未结 5 766
梦如初夏
梦如初夏 2021-01-17 20:59

I am working on a Multilanguage website , where in a table one of the td needs to be arabic stuff - which we know need to start from right. I tried it in many ways but could

5条回答
  •  误落风尘
    2021-01-17 21:40

    I suppose you missing alignment option.

    HTML dir="rtl" or CSS direction:rtl is to control BiDi for the language script.

    But in most cases where mixing different scripts you need to add HTML align="right" or CSS text-align:right which is used to control visual display alignment.

提交回复
热议问题