mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
29 lines
655 B
HTML
29 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test Reference: flex container layout lowest order with row-reverse direction</title>
|
|
<link href="tmtysk@gmail.com" rel="author" title="tmtysk">
|
|
<link href="jackalmage@gmail.com" rel="reviewer" title="Tab Atkins, Jr.">
|
|
<style>
|
|
#leftmost {
|
|
float: right;
|
|
}
|
|
|
|
#middle {
|
|
float: right;
|
|
}
|
|
|
|
#rightmost {
|
|
float: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the paragraph below reads 'First,Second,Third' from leftmost.</p>
|
|
<div id="test">
|
|
<p id="rightmost">Third</p>
|
|
<p id="middle">Second,</p>
|
|
<p id="leftmost">First,</p>
|
|
</div>
|
|
|
|
|
|
</body></html> |