Answers for "row html css extra in next line diplay flex"

0

break to a new line flexbox

<div class="container">
  <div class="item"></div>
  <div class="break"></div> <!-- break -->
  <div class="item"></div>
</div>

<style>
  /* Inserting this collapsed row between two flex items will make 
     the flex item that comes after it break to a new row */
  .break {
	flex-basis: 100%;
	height: 0;
  }
</style>
Posted by: Guest on May-23-2021
0

Jumping to next row flex box

/* Code in the HTML File*/
<div class="container">
	<div class="item">...</div>
	<div class="break"></div> <!-- break to a new row -->
	<div class="item">...</div>
</div>
/*Code in CSS*/
.container{
  display:flex;
}
.break {
  width:100%;
}
Posted by: Guest on May-16-2021

Browse Popular Code Answers by Language