Checkbox text formatting (line spacing maybe?)

Hi. I’ve run into this presumably simple problem with checkboxes a couple times now. The text next to the checkbox is offset in a downward direction. It may be related to the default line spacing, but I’m not sure. There doesn’t seem to be an option to set the line spacing less to 0.5. I’d like the checkbox to be centered vertically with the text that follows. Any idea how to do this?

(Example below)

2 Likes

Turns out all you need to do is drop an html element and add the following:

<style>
  label {
    top: -1px; /*modify as needed*/
    position: relative;
  }
</style>
1 Like