Currently enrolled in the MIMO HTML course and facing a challenge where I am unable to align both elements with the class="column"
attribute horizontally using display: inline-block;
I have attempted using float:right
and other CSS properties to achieve alignment, but there seems to be something preventing it from working
.column {
min-width: 300px; /*This method is not effective*/
display: inline-block; /*Alignment isn't working as expected*/
vertical-align: top; /*Does not produce desired results*/
}
<div id="footer">
<!--Footer-->
<div class="container">
<div class="column">
<h4>My Links
<!--My Links Header-->
</h4>
<p>
<a href="https://soundcloud.com/discover">Soundcloud <!--Link-->
</a>
<br>
<a href="https://www.youtube.com">Youtube <!--Link-->
</a>
</p </div>
<div class="column">
<!--My Story Header-->
<h4>My Story
</h4>
<p>Hey there! I'm aspiring music website creator!
</p>
</div>
</div>
</div>
The display: inline-block;
property is supposed to arrange the elements side by side according to MIMO's guidelines, however, this is not happening as expected