Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>My Example</title> <style> div { transform-origin: 0 0; transform: translate(150px, 0px) rotate(45deg); padding: 20px; width: 120px; background: limegreen; color: white; font-family: sans-serif; } </style> <div> Rotated and moved with <code>translate()</code> and <code>rotate()</code>. </div>
Preview