How do you rotate a webpage?

1 answer

Answer

1149181

2026-04-18 03:20

+ Follow

<style type="text/css">

body.rotate {

-webkit-transform: rotate(90deg);

/* this is for Chrome /*

-moz-transform: rotate(90deg);

/* this is for FireFox /*

filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);

/* this is for IE. Rotation = 1 (90º), 2 (180º), 3 (270º), 4 (360º)/*

}

</style>

be sure to include 'class="rotate"' in your body tag

I have a some issues with IE cutting off the bottom

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.