5e6bacda74
quasiment jamais utilisé en pratique, inutile dans un "framework"
31 lines
310 B
Text
31 lines
310 B
Text
/* flexbox layout
|
|
http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
|
|
*/
|
|
|
|
.flex {
|
|
display : flex;
|
|
}
|
|
|
|
.flex-h {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-v {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-fluid {
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-start {
|
|
order : -1;
|
|
}
|
|
|
|
.flex-mid {
|
|
order : 1;
|
|
}
|
|
|
|
.flex-end {
|
|
order : 42;
|
|
}
|