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/
|
|
|
|
-->
|
|
|
|
<!--
|
|
|
|
This test has static inline content intermixed with flex items,
|
|
|
|
inside a flex container.
|
|
|
|
-->
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" type="text/css" href="ahem.css" />
|
|
|
|
<style>
|
|
|
|
div { height: 100px; }
|
|
|
|
div.flexbox {
|
|
|
|
font: 10px Ahem;
|
|
|
|
width: 200px;
|
2012-10-15 12:42:43 -07:00
|
|
|
display: flex;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
div.a {
|
2012-10-15 12:42:43 -07:00
|
|
|
flex: 1 0 20px;
|
2012-09-29 23:42:29 -07:00
|
|
|
background: lightgreen;
|
|
|
|
}
|
|
|
|
div.b {
|
2012-10-15 12:42:43 -07:00
|
|
|
flex: 2 0 30px;
|
2012-09-29 23:42:29 -07:00
|
|
|
background: yellow;
|
|
|
|
}
|
|
|
|
div.inflex {
|
2012-10-15 12:42:43 -07:00
|
|
|
flex: 0 0 20px;
|
2012-09-29 23:42:29 -07:00
|
|
|
background: gray;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="flexbox"
|
|
|
|
><div class="a"/>text<div class="b"/><i>italic</i
|
|
|
|
><div class="inflex"/></div>
|
|
|
|
</body>
|
|
|
|
</html>
|