Plusieurs Style Sur Un elemento JavaScript
document.getElementById("myElement").style.cssText = "display: block; position: absolute";
//use template literals
document.getElementById("myElement").style.cssText = `
display: block;
position: absolute;
`;
BlueMoon