Second Project in FCC: Survey Form

Hi Campers!

I’ve finished my Virtual Event Survey Form. Any feedback would be greatly appreciated!

Your form looks good @racomajv. Some things to revisit;

  • Make your form responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens

Thanks Roma!

In my VS code it is responsive but in codepen it’s not. I don’t know what happened.

I’m just grabbing my browser window and narrowing it. I can make it smaller than 600px (37.5rem).

My form is now responsive thanks to ‘max-width’

#wrapper {
  max-width: 37.5rem;
  background-color: var(--secondary-color);
  color: white;
  margin: 1rem auto;
}
1 Like

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