Hi!
I would to like a feedback about my second project I made for FCC.
Here’s the link --> https://codepen.io/USprogis/pen/bGNyedm
Hi!
I would to like a feedback about my second project I made for FCC.
Here’s the link --> https://codepen.io/USprogis/pen/bGNyedm
looks fine however radios and checkboxes are not visible, thats because the .input class has atribute “width” with value of “0%”
fix it
Welcome back @Usprogis. You need to revisit your form;
body
element in HTML. (No need to include the body
tags). For anything you want to add to the <head>
element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
<br>
element to force line breaks or spacing. That’s what CSS is for.Thank for your feedback!
Fixed the issues.
Did you notice that since you removed the <br>
element that your radio buttons / checkboxes don’t align with their respective labels?
Set them to be block level elements and see how they align.
Thank you for tip! The elements are now aligned.