mirror of
https://github.com/servo/servo.git
synced 2025-06-28 19:13:41 +01:00
25 lines
649 B
HTML
25 lines
649 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-flex">
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
|
|
<meta name="assert" content="This checks that an orthogonal flex-item with center alignment doesn't stretch.">
|
|
<p>Test passes if there is a filled green square.</p>
|
|
<style>
|
|
.container {
|
|
margin-left: -50px;
|
|
width: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.child {
|
|
writing-mode: vertical-rl;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<div class="container">
|
|
<div class="child">
|
|
<div style="width: 100px;"></div>
|
|
</div>
|
|
</div>
|