css1

Data utworzenia: 2024-11-26 07:04:37
*{ } body { font-family: sans-serif; font-size: 24px; background-color: #222; color: white; div{ margin: 30px; } } tr{ background-color: red; } tr:first-child{ background-color: black; } tr:last-child{ background-color: yellow; } li:nth-child(even){ color: red; } span:first-of-type{ color: blue } div>p:first-child{ color: rgb(0, 255, 13); } div>p:last-child{ color: rgb(255, 242, 0); } ol>li:hover{ color: aquamarine; transition: color 0,9s; }
Powrót