Im trying to figure out this system
I have the following
<div class="row">
<div class="col-2 aside">
<div id="menu" style="background-color:white">
Menu div
</div>
<img src="images/facility.jpg" class="img-fluid" style="margin:50px">
</div>
<div class="col-10" style="height:800px">
</div>
</div>
http://lukesspot.com/indus_links/
Why is the image not being shrunk to fit inside the aside (grey) div.
I put its class to img-fluid, so shouldnt that be the case.
Also, how can I place the image so its always at the bottom of the aside?
Thanks