I have been tasked to select all elements and style them but the code is not passing. Just for clarity this is what I have done: fieldset{
border-bottom: 3px solid #3b3b4f;
border: none;
padding: 2rem 0;
}
Any suggestions??
what is task name, task link?
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.
The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
Welcome to the community.
As both @diomed and Leader @Cody_Biggs stated it is best to provide the information for where you are facing the problem.
There is a Help
that appears after three unsuccessful attempts at any step in the Responsive Web Design.
Here is a link to something that may help you understand CSS selectors and multiple element selections.
Happy coding!
If this is the step
The border-bottom
style has to come after the border: none;
otherwise that style will overwrite the border-bottom
style.
This results in no border-bottom
style.
fieldset {
border-bottom: 3px solid #3b3b4f;
/* overwrites the above styles */
border: none;
padding: 2rem 0;
}
This order will have a border-bottom
style.
fieldset {
border: none;
border-bottom: 3px solid #3b3b4f;
padding: 2rem 0;
}
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.