Responsive web design step 55

Step 55

Next, remove the width and height from .bb2a, and change the border-left and border-right to use 5vw instead of 1vw. The element will now have zero size and the borders will come together in the middle.

My code looks like this
.bb2a {
margin: auto;

border-top: 1vw solid #000;
border-bottom: 1vw solid #000;
border-left: 5vw;
border-right: 5vw;
}

But when i run it says You should change the border-left to use 5vw.any support on this issue???

Please post a link to the challenge.

the problem is that you replaced the entire line with 5vw and erased the “solid #999”:
mod edit: solution redacted
this should work.

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

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