Assessment wanted for Styling basics 1

Hi there,

Hope you’re well :+1:

I’d like an assessment for my markup, codepen here. Thank you in advance. :slight_smile:

1 Like

Nicely done @Phil_G

One thing to consider is using flex to align the inputs. As an example this could be achieved by adding following code:

li {
  display: flex;
  align-items: center;
}

label {
  flex: 0 40%;
  text-align: right;
}

input, select {
  flex: auto;
}

See you,
Michael

2 Likes

Michael ! I love the way Flexbox makes everything neat ! Thank you !

1 Like