base = document.createElement('div');
base.style.width = '200px';
base.style.height = '250px';
base.style.backgroundColor = 'black';
base.style.color = 'white';
base.style.opacity = '0.5';
It doesnt show a black 200px by 250px div on the screen when I run the code. How can I fix this issue?