Instructions Read:
“In the .green
CSS rule, set the background-color
property to a hex color code with the values 00
for red, FF
for green, and 00
blue.”
I thought I entered my code correctly but it keeps saying i got it incorrect.
Any advice would be wonderful to this new coder
CODE IN QUESTION:
.green{
background-color: hex(#00FF00);
}
**My code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colored Markers</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>CSS Color Markers</h1>
<div class="container">
<div class="marker red">
</div>
<div class="marker green">
</div>
<div class="marker blue">
</div>
</div>
</body>
</html>
/* file: styles.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: hex(#00FF00);
}
.blue {
background-color: rgb(0, 0, 0);
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Challenge: Step 46
Link to the challenge: