CSS Code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

CSS Code

Does anyone know how I can change one section of code in CSS without it affecting another part? If you enter the code into the playground, you can see my problem. This is homework of my class and I am stuck. Thanks in advance to anyone who can help. <div> <h3 id='id1'>Red text header with a blue border!</h1> <p class="class1">This paragraph should have a black background and yellow text</p> <span class="class1">Black background and white text.</span> <span>Blue background and white text.</span> </div> <div> <h3>Red text header with red border!</h3> <p>Green text with white background color</p> <p id="id2">Green text, white background color, dashed purple border</p> </div> /* Your code here: */ h3.{color: red; background: blue; } .p {color: yellow; background: black; } span {color: white; background: blue; } p.class1 {color: yellow; background: black; } .class1 {color: white; background: black; } .id1 {color: green; background: white } #id2 {color: green; background: white; border: purple dashed }

8th Aug 2018, 3:33 AM
Michelle Dobbs
Michelle Dobbs - avatar
6 Answers
+ 1
You can only target one element by using id in CSS. id can only be applied on one element of the whole webpage.
8th Aug 2018, 5:16 AM
CalviÕ²
CalviÕ² - avatar
+ 1
You're right. I didn't realize I had pluralized "element" when referring to id.
8th Aug 2018, 6:53 AM
Janningā­
Janningā­ - avatar
+ 1
Thank you for your help Calvin. I really appreciate your assistance!
8th Aug 2018, 2:58 PM
Michelle Dobbs
Michelle Dobbs - avatar
0
Your prompt, "change one section of code in CSS without it affecting another part" is unspecific. Being not entirely sure where you are experiencing difficulty or what your desired result is, I can only offer generic observations. (Also, I'm not sure why you didn't just leave your code in Code Playground and simply linked the code, because it would be much easier for both you and us if you had done so.) h3 should not have a period before the curly brace. I'm guessing that you are also supposed to be adding a red border here. .p is not a class you have employed. You should either remove it or remove the period before the p so the styling applies to your paragraphs. .id1 is not a class you have employed. You should either remove it or change the period to a hashtag so the styling applies to the elements with the "id1" id. (Edit: Singular "element", not plural.) There are probably more issues, but it would be helpful if you linked your Code Playground code.
8th Aug 2018, 4:11 AM
Janningā­
Janningā­ - avatar
0
Janning here is the link. https://codepen.io/MiMiiXV/pen/RBeQzG
8th Aug 2018, 3:00 PM
Michelle Dobbs
Michelle Dobbs - avatar
0
Good job, Michelle! šŸ‘ Looks like it works! šŸ˜Š One note: Line 8's opening tag doesn't match its closing tag. Keep up the good work!
9th Aug 2018, 4:34 AM
Janningā­
Janningā­ - avatar