CSS: Flex

By Xah Lee. Date: .
xtodo

workout the one page of css flex

css flex

.MTckf {
 display: flex;
 display: inline-flex;

 flex-direction: row;
 flex-direction: column;

 flex-wrap: wrap;
 flex-wrap: nowrap;
 flex-wrap: wrap-reverse;

 flex-basis: 1200px;
 justify-content: flex-start;

 align-self: auto normal stretch center start end self-start self-end flex-start flex-end baseline first last safe unsafe;

 align-items: center;
 align-content: flex-start;
}

.VkjpW {
 flex-grow: 2;
 flex-shrink: 2;
 flex: 1 1 300px;
 flex-basis: 300px;
 order: 2;
}