Non so se è questo che chiedevi

codice:
<!doctype html>
<html>
<body>
<div id="div1" style="width:300px; height:200px; border: 1px solid red;"></div>
<br>
<input type="button" id="bottone1" value="avvia" onclick="avvia1()">
<script>
function avvia1() {
    elemento=document.getElementById("div1");
    elemento.style.fontSize="40";
    elemento.style.backgroundColor="cyan"
    elemento.style.borderColor="blue";
    elemento.style.color="red";
    elemento.style.position="absolute";
    elemento.style.top =300+"px";
    elemento.style.left =200+"px";
    elemento.style.borderWidth =5+"px";


    elemento.style.webkitTransform = 'rotate('+90+'deg)'; 
    elemento.style.mozTransform    = 'rotate('+90+'deg)'; 
    elemento.style.msTransform     = 'rotate('+90+'deg)'; 
    elemento.style.oTransform      = 'rotate('+90+'deg)'; 
    elemento.style.transform       = 'rotate('+90+'deg)'; 
}
</script>
</body>
</html>