I can’t fill in survey.
what do you actually mean? I can fill the inputs.
HI @Puffy !
Can you provide us with more information on what you need help with?
I am also able to write in the inputs.
Did you need help with the failing user stories?
Right now you are failing 3 tests.
I am dealing with a test right now. It’s not a problem for now. I am learning from them. The main problem for me is if you look at the template survey given from freecodecamp, it has a gray to the black(I am colorblind, its dark color, I don’t know) half-transparent background color. I don’t know how to do that. I thought I can do it by creating a border and filling it in.
template: https://codepen.io/freeCodeCamp/pen/VPaoNP?editors=1100
i wrote it but my text didn’t show up in comment. I ment that I can’t fill in inside of the border.
you want to change the background color of the form? if so, i see the following in your code
#main {
rgba(255, 0, 0, 0.4);
text-align: center;
color: yellow;
border-style: solid;
margin: 10px 200px 10px 200px;
}
you are using rgba, but you assign nothing to it. If you want to change the background of the element you should use
#element {
background-color: color;
}
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.