Modern CSS Techniques for Stunning UIs
CSS has evolved dramatically. Let's explore modern techniques.
Glass Morphism
``
css
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 16px;
}
`
Gradient Text
`css
.gradient-text {
background: linear-gradient(135deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
`
Smooth Animations
`css
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
``Conclusion
Modern CSS gives us incredible power to create beautiful UIs!