All About Flexbox
Flexbox
Display
Display: flex
The flex container becomes flexible by setting the display property to flex.
Example:
*HTML
<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
CSS
#mymain {
height: 100px;
display: flex;
}
#m...
shobhitsheta.hashnode.dev6 min read