jumping to next row flex box

Solutions on MaxInterview for jumping to next row flex box by the best coders in the world

showing results for - "jumping to next row flex box"
Emma
13 Sep 2016
1
2/* Code in the HTML File*/
3<div class="container">
4	<div class="item">...</div>
5	<div class="break"></div> <!-- break to a new row -->
6	<div class="item">...</div>
7</div>
8/*Code in CSS*/
9.container{
10  display:flex;
11}
12.break {
13  width:100%;
14}
15
16