/ Published in: jQuery
Detecta la resolucion de la pantalla Util para utilizarlo con css.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//detectar resolucion de pantalla if ((screen.width>=1600) && (screen.height>=900)) { //Código de ejemplo... $("#cuerpo").css("margin-left","14%"); $("#wrap55").css("height","36px"); $("#header").css("padding-left","14%"); $("#footer .title").css("padding-left","15%"); $("#footer .icos").css("margin-left","15%"); $("#footer .title2").css("padding-left","11%"); }