Jump to content

Module:Flex columns/styles.css

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Evad37 (talk | contribs) at 03:26, 26 July 2018 (flex-wrap). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
.flex-columns-container {
	clear:both;
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.flex-columns-container > .flex-columns-column {
	float: left;
	width: 50%;
	min-width: 300px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}
.flex-columns-container > .flex-columns-column > div {
	flex: 1 0 auto;
}
.flex-columns-container > .flex-columns-column > div.flex-columns-noflex {
	flex: 0;
}