mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 09:57:00 +02:00
If a flex container has `direction: rtl` set, reverse the row direction. (cherry picked from commit 82989554abf6ca8f261de9a51c9e3d3c20f5e68b)
6 lines
251 B
HTML
6 lines
251 B
HTML
<!DOCTYPE html>
|
|
<html dir="rtl">
|
|
<div style="display: flex; flex-direction: row"><div>aaa</div><div>bbb</div><div>ccc</div></div>
|
|
<div style="display: flex; flex-direction: row-reverse"><div>aaa</div><div>bbb</div><div>ccc</div></div>
|
|
</html>
|