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/
|
|
|
|
-->
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
div.flexbox {
|
2012-10-15 12:42:43 -07:00
|
|
|
display: flex;
|
2012-09-29 23:42:29 -07:00
|
|
|
width: 400px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
background: lightgreen;
|
2012-10-15 12:42:43 -07:00
|
|
|
justify-content: space-around;
|
2012-09-29 23:42:29 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="flexbox">
|
|
|
|
aaa<div>[[[</div>bbb
|
|
|
|
</div>
|
|
|
|
<div class="flexbox">
|
|
|
|
aaa<div>]]]</div>bbb
|
|
|
|
</div>
|
|
|
|
<div class="flexbox">
|
|
|
|
aaa<div>[[[</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexbox">
|
|
|
|
aaa<div>]]]</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexbox">
|
|
|
|
<div>[[[</div>bbb
|
|
|
|
</div>
|
|
|
|
<div class="flexbox">
|
|
|
|
<div>]]]</div>bbb
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|