mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 18:06:56 +02:00
Should resolve #449 for LTR languages at least (cherry picked from commit d427344f39581cd7789280949eb6d102b39218a3)
24 lines
307 B
HTML
24 lines
307 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#b {
|
|
border: 1px solid red;
|
|
width: 50px;
|
|
height: 50px;
|
|
float: inline-start;
|
|
}
|
|
#c {
|
|
border: 1px solid blue;
|
|
width: 50px;
|
|
height: 50px;
|
|
float: inline-end;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=b></div>
|
|
<div id=c></div>
|
|
</body>
|
|
</html>
|