Learn CSS Colors by Building a Set of Colored Markers - Step 46

Hello. I am stuck on this. I am still trying to figure coding out. Can somebody at least give me a hint?

Your code so far

/* file: index.Ext.html */
h1 {
  text-align: center;
}

.container {
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.red {
  background-color: rgb(255, 0, 0);
}

.green {
  background-color: rgb(0, 0, 0);
}

.blue {
  background-color: rgb(0, 0, 0);
}

/* file: styles.Ext.css */
h1 {
  text-align: center;
}

.container {
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.red {
  background-color: rgb(255, 0, 0);
}

.green {
  background-color: rgb(0, 0, 0);
}

.blue {
  background-color: rgb(0, 0, 0);
}

Your mobile information:

iPhone - iOS16.6

Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 46

Link to the challenge:

This background-color property here isn’t set to #00FF00

I tried it. It’s hard to understand because I’m still new.

Ok, what does your code look like when you type in #00FF00 as the value for the background-color property?

Hey man. Problem solved by myself. Thank you for your help.z

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