Published
- 1 min read
plusieurs style sur un element javascript
The solution for this is noted below
plusieurs style sur un element javascript
Solution
document.getElementById("myElement").style.cssText = "display: block; position: absolute";
//use template literals
document.getElementById("myElement").style.cssText = `
display: block;
position: absolute;
`;
Try other methods by searching on the site. That is if this doesn’t work