Etudes/BTS/Web/Premiere annee/2CSS1/style.css

18 lines
193 B
CSS
Raw Normal View History

2016-10-14 15:52:18 +00:00
.p1{
color: red;
font: uppercase;
}
.p1 + .p2{
color: blue;
font-weight: bold;
}
.p2 + .p3{
color: yellow;
font-style: italic;
}
body{
background-color: #999999
}