1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| *>ul {
/*ff*/
list-style: disc outside;
padding-left: 10px; /*espace pour la puce dans la marge intérieur du ul*/
margin-left: 10px;
color: #6A5ACD;
line-height: normal;
padding-bottom: 0px;
padding-top: 0px;
}
* html ul {
/*IE*/
list-style: disc outside;
margin-left: 15px; /*espace pour la puce dans la marge extérieur du ul*/
padding-left: 10px;
color: Purple;
padding-bottom: 0px;
line-height: normal;
padding-top: 0px;
}
li {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
padding-left: 10px;
padding-bottom: 0px;
line-height: normal;
padding-top: 0px;
} |