I need help with a list item containing two divs. I want the div with the checkmark to always stay on the left side even when the screen is resized. Currently, on smaller screens, the divs stack on top of each other.
<ul>
<li class="comment">
<div class="likeButton d-inline-block align-top">CHECKBOX</div>
<div class="d-inline-block">
<div>
<small>Username - Date</small>
</div>
<div class="commentContent">
This is where the comment goes
</div>
</div>
</li>
</ul>
I initially thought that using d-inline-block or d-inline classes would solve the issue, but it doesn't.
For an example, you can refer to this link:http://www.bootply.com/ZVPZFTKJ4A