
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of transform-origin property with CSS
Use the transform-origin property to change the position on transformed elements with CSS.
Example
You can try to run the following code to learn how to work with transform-origin property with CSS
<!DOCTYPE html> <html> <head> <style> .demo1 { width: 300px; height: 300px; background-color: yellow; } .demo2 { width: 200px; height: 200px; background-color: orange; } .demo3 { width: 100px; height: 100px; background-color: blue; transform: rotate(10deg); transform-origin: 30% 40%; } </style> </head> <body> <h1>Rotation</h1> <div class = "demo1">Demo <div class = "demo2">Demo <div class = "demo3"> Demo </div> </div> </div> </body> </html>
- Related Questions & Answers
- Usage of transform property with CSS
- Animate transform-origin property with CSS Animation
- Usage of transform-style property with CSS
- Usage of text-transform property in CSS
- CSS background-origin property
- CSS perspective-origin property
- Usage of margin property with CSS
- Usage of border property with CSS
- Usage of width property with CSS
- Usage of height property with CSS
- Usage of margin-bottom property with CSS
- Usage of margin-right property with CSS
- Usage of -moz-opacity property with CSS
- Usage of margin-top property with CSS
- Animate transform property with CSS Animation
Advertisements