Can't find the layout/styling problem

Could anyone tell me where I went wrong with the layout/styling?
I’ve been trying to figure it out for a while but can’t seem to put my finger on it.
Cleaned it up a lot since my last survey form.
The test says that it’s all good to submit, but it looks really bad (the buttons and checkbox are sloppy) and the first dropdown bar eats a whole sentence.
Any tips/feedback would be more than appreciated!

https://codepen.io/thehappiestmanalive/pen/jOVMawj

This is because of the <optgroup> tag, it’s used like this:

<optgroup label="Swedish Cars">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
</optgroup>

Regarding the styling I’d rather left-align elements inside the form, I think it’s more organized that way.

Other than that don’t worry if your form doesn’t look perfect, it all takes practice. The next one you create will certainly be better :slight_smile:

1 Like

Thank you so much for your time and feedback! :grin:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.