Little Firefox Glitch
by z3n on May.30, 2009, under Coding, Tips & Hints
Problem:
Having a fixed background may be a problem on firefox if you just declare it like this:
body { background:url(file.ext) fixed; }
Solution:
body { background:url(file.ext) fixed #color; }
Problema:
Ter um fundo fixo na página pode ser um problema no firefox se você declarar de seguinte forma:
body { background:url(arquivo.ext) fixed; }
Solução:
body { background:url(arquivo.ext) fixed #cor; }
No comments for this entry yet...