Having a bit of trouble phrasing my question, but here's the issue I'm facing:
Currently, I need to develop two different views, the first being the mobile view
However, I'm experiencing some difficulties with the second view, which can be seen here
My goal is to have the first and last columns fill the remaining height of the view.
Below is a snippet of my code:
<div class="row">
<div class="col-2 col-md-2" style="background-color: aqua;">content</div>
<div class="col-10 col-md-6" style="background-color: yellow;">title</div>
<div class="col-12 col-md-6 offset-md-2" style="background-color: red;">description</div>
<div class="col-12 col-md-4" style="background-color: rebeccapurple;">price</div>
</div>