1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
<!DOCTYPE html>
<html><head><title>CSS Flexbox: nested orthogonal children on relayout.</title>
<link href="https://www.w3.org/TR/css-flexbox-1/#flex-direction-property" rel="help">
<link href="reference/nested-orthogonal-flexbox-relayout-ref.htm" rel="match">
<meta content="This test ensures nested orthogonal flex items get properly relaid out when flexbox changes dimensions." name="assert">
<style>
#column {
display: flex;
flex-direction: column;
border: 5px solid yellow;
}
#row {
display: flex;
flex-direction: row;
border: 5px solid blue;
}
.item {
border: 5px solid green;
}
</style>
</head><body>
<div id="column">
<div id="row">
<div class="item">This text should not overflow its box</div>
</div>
</div>
<script>
var columnBox = document.getElementById("column");
columnBox.offsetHeight;
columnBox.style.width = "200px";
</script>
</body></html>
|