Hey! Welcome to the freeCodeCamp’s community forums.
Learning to describe the bugs or issues you’re facing is a great skill to have in a developer, it may seem hard at first, but you should at least provide a brief summary of what you are trying to accomplish and what’s the error that shows up when you try to run your code.
Whenever you face a problem , you should look at the instructions and read them carefully to make sure you aren’t missing anything. In this challenge, these are the instructions provided to you.
As mentioned, you need to use a single type selector for all of the elements.
Which basically means that instead of selecting and changing the properties of each element individually, you can reuse the same styles for multiple elements by comma separating them.
For example, if i want to change the background color of all of the buttons and input elements in my code, i can do something like this:
/* instead of this */
button{
background-color: red;
}
input{
background-color: red;
}
/* i can do this */
button, input{
background-color: red;
}