mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
28 lines
259 B
CSS
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;
|
|
}
|