45 lines
1.9 KiB
HTML
45 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Flexbox: Auto margins on column flex direction with wrap</title>
|
|
<link href="support/flexbox.css" rel="stylesheet">
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#valdef-flex-direction-column">
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#valdef-flex-wrap-wrap">
|
|
<link rel="match" href="reference/align-self-015-ref.html">
|
|
<meta name="assert" content="This test ensures that auto margins for column flows are correctly calculated"/>
|
|
<style>
|
|
.flexbox {
|
|
border: 1px solid black;
|
|
width: 400px;
|
|
height: 200px;
|
|
}
|
|
.item1 {
|
|
margin: 0 auto;
|
|
background: lightblue;
|
|
}
|
|
.item2 {
|
|
background: lime;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if the flex items are properly centered in each column</p>
|
|
<div class="flexbox column wrap">
|
|
<div class="item1">centeredWithMargins</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
<div class="item2 align-self-center">centeredWithAlignSelf</div>
|
|
</div>
|
|
</body>
|
|
</html>
|