How do I prevent my Mail and In-Person Checkboxes from wrapping around the previous element and make them look like all the other elements?
IMPORTANT! I keep failing test #13 even though I have tried having (name=“name1”, name=“name2”, etc…) and (name=“name”, name="name) in the sense that they are varying and identical. Why do I keep failing?
I’m new to programming so if my questions sound like gibberish I apologize.
Instead of using <br> elements to have each inline element on a new line, use or set container elements to be block-level elements so they’ll each take up the full width.
When a test fails click the red button to see which test(s) are failing and text to help you correct the issue.
Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
Remember that an id must be unique within the document.
I see that you are failing 12 not 13. You have more than one id="dropdown". The “label for” attribute should be the same as the “input id” attribute. An element should have only one id attribute.
Your checkboxes do not appear wrapped. They are stacked since they are in separate divs.