I am struggling to keep a checkbox and text on the same line.
Below is the provided HTML code:
<span class="list-item">
<label>
<input type="checkbox" name="payment[]" value="Some payment"> Some payment
</label>
</span>
I am trying to figure out how to achieve this. The only display attribute that seems to work for me is display: -webkit-box;
, but it only works in Chrome browser.
Your assistance on this matter would be greatly appreciated. Thank you.