зеркало из https://github.com/mozilla/gecko-dev.git
47 строки
1.2 KiB
HTML
47 строки
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Flexbox Test Reference: Fragmentation of height:auto single-line row flex container in a zero height multicol</title>
|
|
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
|
|
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
|
|
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
|
|
|
<style>
|
|
.multicol {
|
|
column-count: 2;
|
|
height: 0;
|
|
border: 1px solid black;
|
|
margin-bottom: 30px; /* Just to separate each sub-testcase visually. */
|
|
}
|
|
|
|
.flexContainer {
|
|
display: block;
|
|
padding: 1px;
|
|
}
|
|
|
|
.boxDecorationBreak {
|
|
padding: 5px;
|
|
box-decoration-break: clone;
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
<!-- Basic one with padding on the flex container.-->
|
|
<div class="multicol">
|
|
<div class="flexContainer">
|
|
<div>abcdef</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Larger padding and box-decoration-break:clone on the flex container.-->
|
|
<div class="multicol">
|
|
<div class="flexContainer boxDecorationBreak">
|
|
<div>abcdef</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|