Javascript Style How to - Rotate full page








Question

We would like to know how to rotate full page.

Answer


<!DOCTYPE html>
<html>
<body>
  <h2>hello world!</h2>
<script type='text/javascript'>
<!--  w ww .j av a  2s  .  c o m-->
    document.body.style.setProperty("-webkit-transform", "rotate(-90deg)", null);

</script>
</body>
</html>

The code above is rendered as follows: