Ho can I set these properties:
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
On an element with javascript. I usually do it like so:
var element = document.getElementById("#element")
element.style.display = "flex";
But what about the rest of the properties in there, what could I do to apply those ?