É fácil definir valores CSS embutidos com javascript. Se eu quiser mudar a largura e tiver um html assim: <div style="width: 10px"></div> Tudo que eu preciso fazer é: document.getElementById('id').style.width = value; Isso mudará os valores da folha de estilo embutida. Normalmente,...