Return to Snippet

Revision: 66414
at May 1, 2014 19:30 by fedek6


Initial Code
/* wrapper */
.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;  
}
/* children */
.children {
 display: block;
 width: 100%;
}

Initial URL


Initial Description
Take full available width of a wrapper.

Initial Title
Flexbox, take full width for each children element

Initial Tags


Initial Language
CSS