Build an Availability Table - Build an Availability Table

Tell us what’s happening:

I am having this problem in my test case number 35, Please help me to fix this only problem.

I have tried everything but nothing is working.
Here is my CSS: background-image: linear-gradient(
90deg,
var(–color0) 0%, var(–color0) 16.666%,
var(–color1) 16.666%, var(–color1) 33.333%,
var(–color2) 33.333%, var(–color2) 50%,
var(–color3) 50%, var(–color3) 66.666%,
var(–color4) 66.666%, var(–color4) 83.333%,
var(–color5) 83.333%, var(–color5) 100%
);

Your code so far

<!-- file: index.html -->

/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36

Challenge Information:

Build an Availability Table - Build an Availability Table

  1. Use two dashes when you call your var(--color#) and not one dash var(-color#)
  2. Use two color stops by placing two percent values after your var(--color#): var(–color0) #% #%.
  3. Your first percent color stop should not start at 0% and have two color stops and your last percent color stop should only have one color stop.
  4. Don’t use floating point numbers, just use positive integers/ whole numbers for your percent values. *Don’t know why but it won’t pass the test.
1 Like

Thank you very much, Tracy, for your help.

1 Like