Code CSS interprété differemment sur IE et FF
Bonjour,
j'ai le CSS suivant exécuté par une feuille xhtml mais il n'est pas interprété de la même façon sous IE ou FF (étant la bonne présentation)
Code:
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
| @CHARSET "ISO-8859-1";
.alignCenter {
text-align: center;
}
.alignRight {
text-align: right;
}
BODY {
font-family: Arial;
font-size: 13px;
}
.title {
color: #EAA970;
font-size: 16px;
font-weight: bold;
}
.titleValidedForm {
color: #006600;
font-size: 16px;
}
.label {
color: #25507E;
}
.labelValidedForm {
color: #006600;
}
.required {
color: #FF0000;
font-weight: bold;
vertical-align: super;
cursor: default;
}
.formErrorOn {
color: #FF0000;
border: 1px dotted #DD6E0D;
background-color: #EFE0E0;
background-image: url(../images/ko.png);
background-repeat: no-repeat;
background-position: left top;
height: 50px;
text-align: center;
padding-left: 40px;
}
.formErrorOff {
color: #FFFFFF;
border: 0px;
height: 50px;
}
.inputText {
border: 1px solid #DD6E0D;
width: 190px;
}
.inputTextError {
border: 1px solid #DD6E0D;
background-color: #EFE0E0;
width: 190px;
}
.emptyBorder {
border: 0px;
}
.disable {
background-color: #ECE9D8;
color: #ACA899;
}
.tableFondUtilisateur {
width: 395px;
height: 365px;
background-image: url(../images/fondUtilisateur.gif);
background-repeat: no-repeat;
background-position: left top;
padding-left: 5px;
padding-top: 10px;
padding-right: 40px;
}
.tableFondOubli {
width: 511px;
height: 202px;
background-image: url(../images/fondOubli.gif);
background-repeat: no-repeat;
background-position: left top;
padding-left: 5px;
padding-top: 10px;
padding-right: 35px;
}
.tableFondChangement {
width: 450px;
height: 202px;
background-image: url(../images/fondChangement.gif);
background-repeat: no-repeat;
background-position: left top;
padding-left: 5px;
padding-top: 10px;
padding-right: 70px;
}
.tableFondValidation {
width: 450px;
height: 350px;
background-image: url(../images/fondValidation.gif);
background-repeat: no-repeat;
background-position: left top;
padding-left: 5px;
padding-top: 10px;
}
.tableValidedForm {
border: 1px dotted #006600;
background: #DDFFAA;
background-image: url(../images/ok.png);
background-repeat: no-repeat;
background-position: left center;
text-align: left;
padding-left: 30px;
}
li {
list-style-type: circle;
color:#25507E;
}
li:hover {
list-style-type: circle;
color : #DD6E0D;
}
.liens {
color:#25507E;
}
.liens:hover {
color : #DD6E0D;
} |
Sauriez vous pourquoi ?
Merci d'avance