Answers for "append a new div element in the body of the document"

2

js append element to body

var elem = document.createElement('div');
elem.style.cssText = 'position:absolute;width:100%;height:100%;opacity:0.3;z-index:100;background:#000';
document.body.appendChild(elem);
Posted by: Guest on May-23-2021

Code answers related to "append a new div element in the body of the document"

Code answers related to "Javascript"

Browse Popular Code Answers by Language