Etudes/BTS/Web/Premiere annee/2CSS1/style.css
2016-10-14 17:52:18 +02:00

18 lines
193 B
CSS

.p1{
color: red;
font: uppercase;
}
.p1 + .p2{
color: blue;
font-weight: bold;
}
.p2 + .p3{
color: yellow;
font-style: italic;
}
body{
background-color: #999999
}