In step 41 im supposed to move things to a different class selector. My question is do i need to delete the class in which it tells me to move it from?
Hello @RylieCloud !
You can delete it. Or, cut just drag it to the new location.
But, it should be removed from the original place where you are moving it from.
Wishing your good progress on your coding journey.
not sure quite what im doin’ wrong whether i cut it or not it isn’t accepting it,
- BACKGROUND BUILDINGS - “bb” stands for “background building” */
.bb1 {
width: 10%;
height: 70%;
display: flex;
flex-direction: column;
align-items: center;
}
.bb1a {
width: 70%;
height: 10%;
background-color: var(–building-color1);
background: linear-gradient(
var(–building-color1),
var(–window-color1)
);
}
.bb1-window{
width: 70%;
height: 10%;
background-color: var(–building-color1);
background: linear-gradient(
var(–building-color1),
var(–window-color1)
);
}
.bb1b {
width: 80%;
height: 10%;
background-color: var(–building-color1);
Hi @RylieCloud
When you move something, you need to cut and paste it.
Since the new selectors contain the required properties, try removing the properties from the source selector.
Happy coding
Hello @RylieCloud !
Good attempt!
Only move the background and the height to the new .bb1-window selector.
It appears everything was copied and pasted in error. No worries, we could all make this error.
Suggestion:
Reset the step to clear any failed code (this will not affect previously completed steps).
Create the class bb1-window selector, as you have done correctly here.
Highlight the background and height in the current location,
Cut and move them to the .bb1-window selector.
Paste them in there.
Wishing you more good success on your coding journey @RylieCloud .