---
title: "How to use  Transforms in css"  
description: "How to use  Transforms in css"  
author: "Anonymous User"  
published: 2015-12-30  
updated: 2015-12-30  
canonical: https://www.mindstick.com/forum/33814/how-to-use-transforms-in-css  
category: "css-css3"  
tags: ["css-css3", "css"]  
reading_time: 1 minute  

---

# How to use  Transforms in css

I want to use Transforms in css.please help me.

## Replies

### Reply by Anonymous User

```
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Forum.aspx.cs" Inherits="Forumasp.Forum" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title>    <style>        div {            width: 300px;            height: 100px;            background-color: #E4BD0E;            border: 1px solid black;            padding: 10px;        }            div#transform {                -ms-transform: rotate(90deg);                -webkit-transform: rotate(90deg);                transform: rotate(90deg);                margin-top: 104px;            }    </style></head><body>    <div>        Mindstick Software<br />          unleash Your Imagination    </div>    <div id="transform">        Mindstick Software<br />          unleash Your Imagination    </div></body></html>
```

![How to use  Transforms in css](https://www.mindstick.com/mindstickforums/07568c0c-d9c9-42ba-9897-9e9fc31b3ea9/images/3569e6d7-d00d-4e9f-9bef-86fc61b3f8c5.png)

.


---

Original Source: https://www.mindstick.com/forum/33814/how-to-use-transforms-in-css

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
