RTL语言中的对齐方式

时间:2015-12-23 07:03:12

标签: html css browser web internationalization

我需要在LTR语言中右对齐一个块,并在RTL语言中左对齐。 "文本对齐=端"适用于除Internet Explorer之外的所有浏览器。哪些替代解决方案适用于所有浏览器?

1 个答案:

答案 0 :(得分:0)

我想它会起作用。

在HTML中

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ar" dir="rtl">

CSS:

html[dir="rtl"] #navigation {
float: right;
display: inline;
margin-left: 0px;
margin-right: 360px;
}