1. Basics: Linking CSS to HTML

Code Example: Linking an External Stylesheet

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS Basics</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <h1>Hello, CSS!</h1>
    <p>This is a styled paragraph.</p>
</body>
</html>
/* styles.css */
body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}
h1 {
    color: blue;
    font-size: 36px;
}
p {
    color: gray;
    font-size: 18px;
}

Key Concepts


2. Selectors

Code Example: Common Selectors

/* Universal selector */
* {
    margin: 0;
    padding: 0;
}

/* Tag selector */
p {
    color: green;
}

/* Class selector */
.box {
    border: 1px solid black;
}

/* ID selector */
#main-heading {
    font-size: 24px;
}

Key Concepts


3. Colors and Backgrounds

Code Example: Colors

/* Named colors */
h1 {
    color: red;
}

/* Hexadecimal */
p {
    color: #3498db;
}

/* RGB */
div {
    background-color: rgb(52, 152, 219);
}

/* RGBA (with transparency) */
span {
    background-color: rgba(52, 152, 219, 0.5);
}

Code Example: Background Images

body {
    background-image: url("background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

4. Fonts and Text

Code Example: Font Styling

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 2em;
    text-align: center;
    text-transform: uppercase; /* Capitalizes all letters */
    letter-spacing: 2px; /* Adds space between letters */
    word-spacing: 4px; /* Adds space between words */
    line-height: 1.5; /* Adjusts space between lines */
}

5. Box Model

Code Example: Box Model Components

div {
    width: 300px;
    height: 200px;
    margin: 20px; /* Space outside the element */
    padding: 10px; /* Space inside the element */
    border: 2px solid black; /* Border of the element */
    background-color: lightgray;
}

Key Concepts


6. Layouts: Flexbox

Code Example: Flexbox Basics

.container {
    display: flex;
    justify-content: space-between; /* Horizontal alignment */
    align-items: center; /* Vertical alignment */
    gap: 10px; /* Space between items */
}

.item {
    background-color: lightblue;
    padding: 20px;
    border: 1px solid blue;
}
<div class="container">
    <div class="item">Item 1</div>
    <div class="item">Item 2</div>
    <div class="item">Item 3</div>
</div>

Key Concepts


7. Layouts: CSS Grid

Code Example: Grid Basics

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-gap: 10px; /* Space between items */
}

.item {
    background-color: lightgreen;
    padding: 20px;
}
<div class="container">
    <div class="item">Item 1</div>
    <div class="item">Item 2</div>
    <div class="item">Item 3</div>
</div>

Key Concepts


8. Animations

Code Example: Simple Animation

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.box {
    animation: slideIn 2s ease-in-out;
}
<div class="box">I slide in!</div>

Key Concepts


9. Media Queries

Code Example: Responsive Design

body {
    font-size: 16px;
}

@media (max-width: 600px) {
    body {
        font-size: 14px; /* Smaller font for smaller screens */
    }
}

Key Concepts


10. Pseudo-Classes and Pseudo-Elements

Code Example: Pseudo-Classes

a:hover {
    color: red; /* Changes color when hovered */
}

input:focus {
    border-color: blue; /* Highlights input field on focus */
}

Code Example: Pseudo-Elements

h1::after {
    content: "✨";
    color: gold;
}

11. Advanced Selectors

Code Example: Attribute Selectors

input[type="text"] {
    border: 1px solid gray;
}

a[target="_blank"] {
    color: green;
}

Code Example: Combinators

/* Descendant selector */
div p {
    color: red;
}

/* Child selector */
div > p {
    color: blue;
}

/* Adjacent sibling */
h1 + p {
    color: orange;
}

/* General sibling */
h1 ~ p {
    color: purple;
}

12. Transformations

Code Example: Transform

.box {
    transform: rotate(45deg) scale(1.5);
}

13. Gradients

Code Example: Linear and Radial Gradients

div {
    background: linear-gradient(to right, red, yellow);
}

circle {
    background: radial-gradient(circle, red, yellow);
}

14. Shadows

Code Example: Box Shadows

.box {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

15. Variables (CSS Custom Properties)

Code Example: Defining Variables

:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
}

body {
    color: var(--primary-color);
}

16. Z-Index and Stacking Context

Code Example: Stacking Elements

div {
    position: relative;
}

.box1 {
    background: red;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1; /* Behind box2 */
}

.box2 {
    background: blue;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 2; /* In front of box1 */
}
<div class="box1"></div>
<div class="box2"></div>

Key Concepts


17. CSS Specificity

Code Example: Specificity Rules

/* Low specificity */
p {
    color: blue;
}

/* Medium specificity */
.article p {
    color: green;
}

/* High specificity */
#main p {
    color: red;
}

Key Concepts


18. Units in CSS

Absolute Units

Relative Units

Code Example: Units in Action

body {
    font-size: 16px; /* Base font size */
}

h1 {
    font-size: 2rem; /* 32px */
}

p {
    width: 50%; /* Half the width of its container */
}

.section {
    height: 50vh; /* Half the height of the viewport */
}

19. CSS Transitions

Code Example: Adding Smooth Transitions

.button {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: green;
    transform: scale(1.1); /* Slight zoom */
}

Key Concepts


20. Pseudo-Elements vs Pseudo-Classes

Pseudo-Classes Recap

Pseudo-Elements Recap

Key Difference


21. Advanced Selectors

Code Example: Attribute Selectors

input[type="text"] {
    border: 1px solid gray;
}

input[placeholder*="search"] {
    background-color: yellow;
}

22. Gradients

Advanced Gradient Techniques

div {
    background: linear-gradient(to right, red, yellow, green);
}

button {
    background: radial-gradient(circle, #ff0000, #000000);
}

Key Concepts


23. Clipping and Masking

Code Example: Clip Path

div {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    background-color: orange;
    width: 200px;
    height: 200px;
}

Key Concepts


24. CSS Grid: Advanced Features

Code Example: Named Grid Areas

.container {
    display: grid;
    grid-template-areas:
        "header header"
        "sidebar main"
        "footer footer";
    grid-template-columns: 1fr 3fr;
}

.header {
    grid-area: header;
}
.sidebar {
    grid-area: sidebar;
}
.main {
    grid-area: main;
}
.footer {
    grid-area: footer;
}

25. CSS Variables: Advanced Use

Code Example: Dynamic Theming

:root {
    --main-bg-color: #ffffff;
    --main-text-color: #333333;
}

body {
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
}

/* Change variables dynamically */
.dark-theme {
    --main-bg-color: #333333;
    --main-text-color: #ffffff;
}

26. Filters

Code Example: Image Filters

img {
    filter: grayscale(50%) blur(2px) brightness(1.2);
}

Available Filters


27. Important CSS Properties

Overflow

div {
    width: 200px;
    height: 100px;
    overflow: scroll; /* Adds scrollbars */
}

Positioning


28. CSS Shorthand Properties


29. Debugging CSS

Browser Developer Tools

CSS Validation


30. Helpful Resources

  1. MDN Web Docs - Comprehensive reference.
  2. Can I Use - Check browser compatibility.
  3. CSS Tricks - Tips and guides.