fune/testing/web-platform/tests/css/css-flexbox/reference/flexible-order-ref.html
Philip Jägenstedt 5ce22fe9c9 Bug 1673187 [wpt PR 26274] - [css-flexbox] lowercase Flexible-order.html, a=testonly
Automatic update from web-platform-tests
[css-flexbox] lowercase Flexible-order.html (#26274)

--

wpt-commits: 112b6ce2cd9dc64703084645fbf276952c843eed
wpt-pr: 26274
2020-10-27 10:35:04 +00:00

53 lines
615 B
HTML

<!DOCTYPE html>
<html>
<head><title>CSS Test: Change the value of 'order' property</title>
<link rel="author" title="KeynesQu" href="mailto:keynesqu@sohu.com" />
<style>
.box {
margin:0 auto;
background:#CCC;
border-radius:5px;
width:600px;
}
.box div {
margin:0;
width:200px;
float:left;
text-align:center;
}
.box .red {
background:#F00;
}
.box .blue {
background:#00F;
}
.box .black {
color:#FFF;
background:#000;
}
</style>
</head>
<body>
<!-- FLEX CONTAINER -->
<div class="box">
<div class="blue">B</div>
<div class="red">A</div>
<div class="black">C</div>
</div>
</body>
</html>