tenfourfox/layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
579 B
HTML

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<head>
<style>
.flexContainer {
display: flex;
flex-direction: column;
border: 2px dotted black;
height: 298px;
}
.multicol {
height: 100px;
width: 200px;
-moz-column-width: 20px;
-moz-column-fill: auto;
border: 4px solid orange;
}
</style>
</head>
<body>
<div class="multicol">
<div class="flexContainer">
</div>
</div>
</body>
</html>