Just getting started with flexbox
and I'm trying to position content on the top, bottom, and right side. Check out the demo
However, I also need to adjust it for mobile view like the image shown below:
https://i.sstatic.net/1YxtZ.png
The left and right sides are not equal in height.
Is there a way to achieve the layout displayed in the image above or any other method to make it work for mobile and tablet screens?
.main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.left {
background: #f00;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.center {
background: #ddd;
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.right {
background: #f00;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
<div class="main">
<div class="left">
<ul>
<li>1 height not fix</li>
<li>2</li>
<li>3</li>
</ul>
</div>
<div class="center">
<p>
Large content
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
<div class="right">
<ul>
<li>1 height not fix</li>
<li>2</li>
<li>3</li>
</ul>
</div>
</div>