blob: 2c7a04538ad0307d7143079f3d7a711c823e157c [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Test: Box-align end places flex items at the bottom of the flexbox (in horizontal) - Reference </title>
<link rel="author" title="Codeaurora" href="http://www.codeaurora.org/" />
<link rel="help" href="http://www.w3.org/TR/2009/WD-css3-flexbox-20090723/"/>
<style type="text/css">
.box
{
background: url('../support/flexbox_100x100_green.png') top left repeat-x red;
width: 300px;
height: 200px;
z-index: -1;
position: relative;
}
.child
{
width: 100px;
height: 100px;
background: green;
position: absolute;
top: 100px;
}
.sub_b
{
left:100px;
}
.sub_c
{
left: 200px;
}
</style>
</head>
<body>
<p>This test passes if there is no red showing.</p>
<div class="box">
<div class="child">Box1</div>
<div class="child sub_b">Box2</div>
<div class="child sub_c">Box3</div>
</div>
</body>
</html>