Transforms for Fun and Profit
Learn the art of transforming the mundane into the sublime
- Scale it up!
- Rotate it!
- Flip it!
A journey through the absurd and beautiful world of CSS transforms
Learn the art of transforming the mundane into the sublime
.example {
transform: scale(2);
background-color: #f7dc6f;
}
.example2 {
transform: rotate(45deg);
background-color: #666;
}
.example3 {
transform: skewX(30deg);
background-color: #333;
}
And for the adventurous:
Transforms for the Faint of Heart