zadaniepseudoklasy1 css
Data utworzenia: 2024-12-02 11:09:04
.naglowek{
font-size: 24px;
font-weight: bold;
}
li:nth-child(even) {
background-color: blue;
}
li:nth-child(1), li:nth-child(2), li:nth-child(3) {
border-width: 2px;
border-style: solid;
border-color: rgb(255, 234, 0);
}
dd:first-of-type {
border-width: 2px;
border-style: solid;
border-color: rgb(255, 234, 0);
}
p {
font-weight: bold;
font-size: 2rem;
}
.emotka::after{
content: " 🏀 ";
}
.skresl {
text-decoration: line-through;
color: blue;
}
.podkresl {
text-decoration: underline;
}
Powrót