Sypone
1
here i come again, pls help me.
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colored Markers</title>
<link rel="stylesheet" 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;
}
/* User Editable Region */
.red {
background: linear-gradient(180deg, rgb(122, 74, 14), rgb(245, 62, 113), rgb(162, 27, 27)
}
/* User Editable Region */
.green {
background: linear-gradient(180deg, #55680D, #71F53E, #116C31);
}
.blue {
background-color: hsl(240, 100%, 50%);
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Learn CSS Colors by Building a Set of Colored Markers - Step 64
lasjorg
2
You are missing the closing parentheses ) on the linear-gradient function.
Sypone
3
pleas show me i dont get it
Sypone
4
please kindly help me im stuck here, dont know what to do anymore. pls help thanks.
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colored Markers</title>
<link rel="stylesheet" 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;
}
/* User Editable Region */
.red {
background: linear-gradient(180deg, rgb(122, 74, 14) 0%, rgb(245, 62, 113) 50%, rgb(162, 27, 27) 100%);
}
/* User Editable Region */
.green {
background: linear-gradient(180deg, #55680D, #71F53E, #116C31);
}
.blue {
background-color: hsl(240, 100%, 50%);
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Learn CSS Colors by Building a Set of Colored Markers - Step 64
ILM
5
it doesn’t seem you have removed the color stops here, please try to do that
Sypone
6
please show me what stop colors are.
ILM
7
the color stops are the percentages, it says that the color has to stop at that distance
Sypone
8
does this mean i should remove the percentage? which i did, but still saying…
Your .red CSS rule should have a background property set to linear-gradient(180deg, rgb(122, 74, 14), rgb(245, 62, 113), rgb(162, 27, 27)) .
Sypone
10
yes i did removed it. still not working
Sypone
11
.red {
background: linear-gradient(180deg, rgb(122, 74, 14) rgb(245, 62, 113) rgb(162, 27, 27))
}
this is the work so far, pls kindly check for me.
ILM
12
you need to have commas between the color values
Sypone
14
pls still not working, kindly write it out for me, let me pass this stage i’ve being here for the past 1 week.
write it out for me pls thanks
Sypone
15
thanks man, i got it now… jesus this is too hidden, wow just commas.
1 Like
system
Closed
17
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.