2012-09-29 23:42:29 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
<!-- Testcase for align-items / align-self behavior, with all the possible
|
|
|
|
values included on different items within a flex container, and with the
|
|
|
|
flex container being shorter than its items. -->
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
.flexbox {
|
|
|
|
border: 1px dashed blue;
|
|
|
|
padding: 3px;
|
|
|
|
height: 4px;
|
|
|
|
width: -moz-fit-content;
|
2012-10-15 12:42:43 -07:00
|
|
|
display: flex;
|
2012-09-29 23:42:29 -07:00
|
|
|
font-size: 10px;
|
|
|
|
line-height: 10px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flexbox > div {
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.big {
|
|
|
|
height: 100px;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Classes for each of the various align-self values */
|
|
|
|
.flex-start {
|
|
|
|
background: lime;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: flex-start;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.flex-end {
|
|
|
|
background: orange;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: flex-end;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.center {
|
|
|
|
background: lightblue;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: center;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.baseline {
|
|
|
|
background: teal;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: baseline;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.stretch {
|
|
|
|
background: pink;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: stretch;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.auto {
|
|
|
|
background: yellow;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: auto;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.unspecified {
|
|
|
|
background: lightgreen;
|
|
|
|
}
|
|
|
|
.initial {
|
|
|
|
background: aqua;
|
2012-10-30 08:57:36 -07:00
|
|
|
align-self: initial;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
.inherit {
|
|
|
|
background: violet;
|
2012-10-15 12:42:43 -07:00
|
|
|
align-self: inherit;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="flexbox">
|
|
|
|
<div class="flex-start">start</div>
|
|
|
|
<div class="flex-start big">a b c d e f</div>
|
|
|
|
<div class="flex-end">end</div>
|
|
|
|
<div class="flex-end big">a b c d e f</div>
|
|
|
|
<div class="center">center</div>
|
|
|
|
<div class="center big">a b c d e f</div>
|
|
|
|
<div class="baseline">base</div>
|
|
|
|
<div class="baseline big">abc</div>
|
|
|
|
<div class="stretch">stretch</div>
|
|
|
|
<div class="stretch big">a b c d e f</div>
|
|
|
|
<div class="auto">auto</div>
|
|
|
|
<div class="unspecified">unspec</div>
|
|
|
|
<div class="initial">initial</div>
|
|
|
|
<div class="inherit">inherit</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|