Hi there,
Hope you’re well
I’d like an assessment for my markup, codepen here. Thank you in advance.
Hi there,
Hope you’re well
I’d like an assessment for my markup, codepen here. Thank you in advance.
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
Michael ! I love the way Flexbox makes everything neat ! Thank you !