I'm struggling with aligning a label next to a checkbox in my HTML code using Vue.js. Here's how it looks:
<div style="margin-bottom: 15px;">
<input
id="newsletterRegister"
type="checkbox"
name="newsletterRegister"
style="width: 30px"
/>
<label for="newsletterRegister">
Do you want to receive email promotions?
</label>
</div>
I've tried various methods to center the label but haven't had any success so far. Any suggestions or solutions would be greatly appreciated. Thank you!