https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f697d7f44055ac06feac4a2723a100623862cea1 authored by Anne van Kesteren on 16 April 2018, 04:59:06 UTC
clearer function name
Tip revision: f697d7f
flexbox_direction-column-reverse.html
<!DOCTYPE html>
<title>flexbox | flex-direction: column-reverse</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help"
	href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property">
<link rel="match" href="flexbox_direction-column-reverse-ref.html">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;

	display: flex;
	flex-direction: column-reverse;
}
span {
	background: white;
	margin: 1em;
	width: 8em;
	display: inline-block;
}
.test {
	background: #ffcc00;
}
</style>

<div>
	<span class="test">damer</span>
	<span>damer</span>
	<span>damer</span>
	<span>damer</span>
</div>
back to top