Looking for help with aligning and spacing three sets of strings in a single line while maintaining grid columns intact, even when window size is reduced. Currently experiencing alignment issues like this: https://i.stack.imgur.com/iqlam.png
Tried removing padding and margin from the col class but it did not solve the problem. Seeking advice on CSS changes needed to fix this issue. Any suggestions would be greatly appreciated!
.no-padding {
padding: 0 !important;
margin: 0 !important;
}
<div>
<div class="col-sm-4 no-padding">
<span>in the last 24 hours</span>
</div>
<div class="col-sm-7 no-padding">
<span>trending down </span>
<span> compared to 0 in previous 24 hours</span>
</div>
</div>