Now that you’ve got one marker centered with color, it’s time to add the other markers.
In the container
div
, add two more div
elements and give them each a class of marker
.
not understanding why this wont pass
<!-- 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>
<!-- User Editable Region -->
<div class="container"></div><div class="marker"</div><div class="marker"></div>
<div class="marker"></div>
<!-- User Editable Region -->
</body>
</html>
/* file: styles.css */
h1 {
text-align: center;
}
.marker {
width: 200px;
height: 25px;
background-color: red;
margin: auto;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0
Challenge Information:
Learn CSS Colors by Building a Set of Colored Markers - Step 14
Learn to Code — For Free
daphne
February 2, 2024, 7:04pm
2
Hello, I’m noticing you may have deleted or added the surrounding divs to the new div elements. Add two closing divs at the end and it’ll work.
So delete the closing divs in the middle and add 2 at the end? so 3 closing divs at the end? doesnt work still
ilenia
February 2, 2024, 7:30pm
4
you need to have 3 sibling div
inside #container
, from the code you posted at the beginning you are missing a >
missing that where? in the beginning?
nope still doesnt’ work. Can someone just tell me what to do before i quit this?
ilenia
February 2, 2024, 8:51pm
8
can you show your code?
you have not told us if you moved the three div
inside the .container
how do i show it everytime i copy paste it shows something weird
ilenia
February 2, 2024, 9:03pm
11
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
<div class="container"><div class="marker"</div><div class="marker"><div class="marker"></div></div></div>
ilenia
February 2, 2024, 9:07pm
13
artitus1:
<div class="marker"
you still have a missing >
in your opening <div>
tag
also the .marker
elements should be siblings, the last two are nested into each other, move one of the closing </div>
immediately after the second opening tag <div class="marker">
alright i quit this is bs
ilenia
February 2, 2024, 9:14pm
17
for the .marker
elements you need to have an opening tag followed by a closing tag, if you have multiple opening tags after each other, they are not siblings anymore
<div class="container"><div class="marker"></div><div class="marker"></div><div class="marker"></div>
Teller
February 2, 2024, 9:28pm
21
Hi @artitus1
I edited your code for readibility.
<div class="container">
<div class="marker"></div>
<div class="marker"></div>
<div class="marker"></div>
You need to add one more closing div tag to close the parent div , this needs to go at the end of your code.
Happy coding
god bless you i was actually losing my mind
1 Like
system
Closed
August 3, 2024, 9:31am
23
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.