100-Days-Of-Code/Web Development Python Projects/5.3+CSS+Selectors/5.3 CSS Selectors/style.css
2024-10-30 16:52:19 +05:30

27 lines
292 B
CSS

ol {
margin-left: -40px;
margin-top: -20px;
list-style-position: inside;
}
/* Write your CSS below, don't change the rules above. */
p {
color: red;
}
.note {
font-size: 20px;
}
#id-selector-demo {
color: green;
}
li[value="4"] {
color: blue;
}
* {
text-align: center;
}