Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> div { width: 50px; padding: 20px; background: gold; margin: auto; } .rotate { transform: rotate(20deg); } .skew { transform: skewX(20deg) skewY(35deg); } </style> <p>Here is a...</p> <div class="rotate">Rotated box...</div> <p>Here is a...</p> <div class="skew">Skewed box...</div>
Preview