Cita:
Iniciado por Alexis88 En realidad, sí puedes acceder a la propiedad
shorthand margin
y obtener los valores establecidos.
Código Javascript
:
Ver originalgetComputedStyle(elemento).margin
[URL="https://jsfiddle.net/Alexis88/ng7c2vms/"]DEMO[/URL]
¿Y qué hacemos con los navegadores FireFox e Internet Explorer? Por no hablar de los navegadores para dispositivos móviles
Código Javascript
:
Ver originalconsole.log(getComputedStyle(div).margin); // vacío
console.log(getComputedStyle(div).margin-top); // NAN
console.log(getComputedStyle(div)['margin-top']); // 3px