mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
29 lines
No EOL
626 B
HTML
29 lines
No EOL
626 B
HTML
<!DOCTYPE html>
|
|
<html><head><title>flexbox | flex-direction: column</title>
|
|
<link href="http://opera.com" rel="author" title="Opera Software">
|
|
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property" rel="help">
|
|
<link href="reference/flexbox_direction-column-ref.htm" rel="match">
|
|
<style>
|
|
div {
|
|
background: blue;
|
|
margin: 1em 0;
|
|
border: 1px solid black;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
span {
|
|
background: white;
|
|
margin: 1em;
|
|
width: 8em;
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
|
|
</head><body><div>
|
|
<span>damer</span>
|
|
<span>damer</span>
|
|
<span>damer</span>
|
|
<span>damer</span>
|
|
</div>
|
|
</body></html> |