Tell us what’s happening:
He intentado con muchas sintais diferentes pero ningúna pasa, no entiendo qué estoy haciendo mal
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* User Editable Region */
.fb5 {
width: 10%;
height: 33%;
background-color: var(--building-color2);
background: repeating-linear-gradient(
var(--building-color2) 5%,
transparent 10%
);
position: relative;
right: 10%;
}
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Learn CSS Variables by Building a City Skyline - Step 104
It will be the exact same syntax as you’ve done for .fb1c
.fb5 {
width: 10%;
height: 33%;
background: repeating-linear-gradient(
90deg,
var(–building-color2),
var(–building-color2) 5%,
transparent 5%,
transparent 10%
);
position: relative;
right: 10%;
}
Like this?
That dont work, can you give me some instructions or the solution?
I think its broken! Im also stuck at this lol.
.fb5{
width: 10%;
height: 33%;
position: relative;
right: 10%;
background-color: var(–building-color2);
background: repeating-linear-gradient(
var(–building-color2) 0% 5%,
transparent 5% 10%
);
}
Thanks! I just delete a wrong property (90 deg)
For a moment, I thought the page had a bug in that test, but no, it’s just ridiculously picky with the syntax lol. After 3 days, I finally solved it.
well its not your fault bro, I’d be stuck here for 3 days or more if it wasn’t for you lol. Like they never taught us to write the syntax like that before in the course. thanks anyway!
This is the solution bro:
– removed
1 Like
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. How to Help Someone with Their Code Using the Socratic Method
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.
The instructions didn’t ask for 90deg angle.
Please open your own thread
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 Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.
The 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.