123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
- <html>
- <head>
- <style>
- .multicol {
- height: 10px;
- width: 100px;
- -moz-column-width: 30px;
- -moz-column-fill: auto;
- border: 2px solid orange;
- margin-bottom: 15px; /* (just for spacing between testcases) */
- }
- .flexContainer {
- background: teal;
- border: 1px dashed black;
- }
- .item {
- display: block;
- width: 100%;
- height: 20px;
- }
- </style>
- </head>
- <body>
- <!-- auto-height container: -->
- <div class="multicol">
- <div class="flexContainer">
- <img src="" class="item">
- </div>
- </div>
- <!-- fixed-height container, smaller than available height: -->
- <div class="multicol">
- <div class="flexContainer" style="height: 8px">
- <img src="" class="item">
- </div>
- </div>
- <!-- fixed-height container, between available height and child height: -->
- <div class="multicol">
- <div class="flexContainer" style="height: 15px">
- <img src="" class="item">
- </div>
- </div>
- <!-- fixed-height container, same as child height: -->
- <div class="multicol">
- <div class="flexContainer" style="height: 20px">
- <img src="" class="item">
- </div>
- </div>
- <!-- fixed-height container, larger than child height: -->
- <div class="multicol">
- <div class="flexContainer" style="height: 24px">
- <img src="" class="item">
- </div>
- </div>
- </body>
- </html>
|