I play with pseudo-elements and javascript, but some how I can not style it with javascript.
var div = document.querySelector(":before");
div.style["display"] ="none";
div{
width:200px;
height:200px;
background:red;
position:relative;
}
div:before{
position:absolute;
content:'';
top:0;
right:-100px;
width:100px;
height:100%;
background:green;
}
<div></div>
Run codeDoes anyone know why this is not working?
source
share