Difference between revisions of "User:Saul"
From Organic Design wiki
(Added same height column snippet.) |
m (Removed unnecessary text align center.) |
||
| Line 18: | Line 18: | ||
<source lang="CSS"> | <source lang="CSS"> | ||
.Container{ | .Container{ | ||
| − | |||
display: flex; | display: flex; | ||
} | } | ||
Revision as of 19:10, 6 March 2018
I like to be making notes for mysql php and other technologys, and am a friend to linux and open-source programs.
Contents
Snippets:
body .site{
display: flex !important;
min-height: 100vh !important;
flex-direction: column !important;
}
#content {
flex: 1 !important;
}
CSS Same Height Columns:
.Container{
display: flex;
}
.Column{
flex: 1; /* optional to equalize widths */
}



