<!DOCTYPE html><style>
#box {
width: 100px;
height: 100px;
background-color: magenta;
}
</style><body><div id="box"></div></body><script>
document.getElementById("box").style.display = "none";
document.getElementById("box").style.display = null;</script>