forked from mirrors/gecko-dev
Automatic update from web-platform-tests [css-flexbox] lowercase Flexible-order.html (#26274) -- wpt-commits: 112b6ce2cd9dc64703084645fbf276952c843eed wpt-pr: 26274
53 lines
615 B
HTML
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>
|