; layout auto CSS wrap responsive;
Some containers of nested children are rendered foocontainerdynamically. Thus, a fully responsive user interface in CSS.
.foocontainer > div[data-ref="outerCt"] > div[data-ref="innerCt"] {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex!important;
flex-wrap: wrap!important;
}
source
share