APL/APL1.2/Html1.2/tp3/Exercice1.css
2022-01-18 14:16:05 +01:00

18 lines
377 B
CSS

li:nth-child(2n){
list-style-type:none;
border-top:white;
border-bottom:white;
font-variant: small-caps;
background-color: lightgrey;
font-style: italic;
margin: 5px;
}
li:nth-child(2n-1){
color : white;
border-top:white;
border-bottom:white;
font-variant: small-caps;
background-color: grey;
font-style: italic;
margin: 5px;
}