HTML:webkit rtl絕對位置錯誤?
<div id="outer">
<div id="inner">
</div>
</div>
CSS:
#outer {
position: absolute;
left: 100px;
top: 0;
width: 100px;
height: 100px;
direction: rtl;
background-color: blue;
}
#inner {
display: inline-block;
position: absolute;
width: 50px;
height: 50px;
background-color: yellow;
}
在Chrome中,黃色方框是藍色的框外。
在其他瀏覽器(firefox,IE)中,黃色框位於藍色框內。
這是一個webkit的bug,爲什麼?
測試用例上的jsfiddle: http://jsfiddle.net/QF9tT/