Complete CSS Summary For Your Exam
Complete CSS Summary For Your Exam
1. CSS Basics
CSS (Cascading Style Sheets) is used to style HTML elements by changing their appearance
and layout.
Display Property
Position Property
Transitions
@keyframes move {
0% { transform: translateX(0px); }
100% { transform: translateX(100px); }
}
9. Responsive Design
Media Queries
Relative Units
Overflow → Controls content that exceeds the container size (overflow: hidden;).
Visibility → Hides an element without removing its space (visibility: hidden;).
Opacity → Adjusts transparency (opacity: 0.5;).
Transformations → Modify elements (transform: scale(1.2);,
rotate(45deg);).
This covers everything in CSS! Let me know if you need examples or explanations on
specific topics. 🚀