Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to rotate an element using CSS ?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The purpose of this article is to rotate an HTML element by using CSS transform property. This property is used to move, rotate, scale and to perform various kinds of transformation of elements.

The rotate() function can be used to rotate any HTML element or used for transformations. It takes one parameter which defines the rotation angle. The rotation angle consists of two parts, the value of the rotation followed by the unit of rotation. The unit can be defined in degrees (deg), gradient (grad), radians (rad) and turns.

Syntax:

transform: rotate(90deg);

Example: The following example demonstrates rotation of an image by 45 degree.

HTML




   
 <!DOCTYPE html> 
<html
  
<head>     
    <style
        body { 
            text-align:center; 
        
        h1 { 
            color:green; 
        
        .rotate_image { 
            transform: rotate(45deg); 
        
    </style
</head
  
<body
    <h1>GeeksforGeeks</h1
    <h2>
        How to rotate an element using CSS?
    </h2
      
     <img class="rotate_image" src
          alt="GeeksforGeeks logo"
</body
  
</html>


Output:
Before Rotation:

After Rotation:

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera
My Personal Notes arrow_drop_up
Last Updated : 31 Aug, 2020
Like Article
Save Article
Similar Reads
Related Tutorials