Files
frontend-bootcamp/step1-02/exercise/answers.css
Micah Godbolt 3acd7d22ec updates
2019-03-03 17:51:31 -08:00

28 lines
259 B
CSS

h2 {
color: red;
}
h2 + div {
color: green;
}
.myList li {
border: 1px solid green;
}
.myClass {
background: green;
}
#myId {
background: yellow;
}
.myClass.otherClass {
color: white;
}
section > div:last-child {
border: 1px solid pink;
}