Tell us what’s happening:
Error message: You should give .fb5 a second repeating-linear-gradient in the background property.
I’ve double checking my spelling and grammar to no avail. Please help in guiding me through any visible issues.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* User Editable Region */
.fb5 {
width: 10%;
height: 33%;
position: relative;
right: 10%;
background: repeating-linear-gradient(
90deg,
var(--building-color2) 0%,
var(--building-color2) 5%,
transparent 5%,
transparent 10%
),
repeating-linear-gradient(
90deg,
var(--building-color2) 0%,
var(--building-color2) 12%,
var(--window-color2) 12%,
var(--window-color2) 44%
);
}
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Learn CSS Variables by Building a City Skyline - Step 105