Back online

Ca y est! J’ai corrigé le bug qui ralentissait tout sous IE… (en fait, j’ai un peu laissé ça de côté, il ne m’a donc pas fallu tout ce temps pour trouver ^_^)

Pour ceux que ça intéresse, mon css commencait comme suit:

body,html {
background-image (...);
}

Et c’est là que ça coincait… la balise html étendait la propriété background-image à tout le code html et ça foirait sous IE (sous Firefox, il se porte comme un charme par contre, comme quoi… 😉

En conclusion, on écrit

body {
background-image: (...);
}

Sur, ce, bonne semaine et à bientôt.