Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
CSS

CSS: Use Container Queries for True Component-Based Responsive Design

- 22.03.26 - ErcanOPAK

📦 Responsive Components, Not Just Pages

Media queries check viewport width. Component in sidebar? Full width? Same breakpoint fails. Container queries check parent width.

The Problem with Media Queries

❌ Media Queries

/* Card component */
.card {
  display: flex;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column; /* Stack on mobile */
  }
}

Problem:
- Card in sidebar (300px): Still horizontal! (viewport > 768px)
- Card full width (800px): Stacked! (viewport < 768px)
- Component doesn't know its own width

Container Queries Solution

✅ Container Queries

/* Define container */
.sidebar,
.main-content {
  container-type: inline-size;
  container-name: card-container;
}

/* Card adapts to parent width */
.card {
  display: flex;
}

@container card-container (max-width: 400px) {
  .card {
    flex-direction: column;
  }
}

Result:
- Card in 300px sidebar: Stacked ✓
- Card in 800px main: Horizontal ✓
- Component responds to ITS container, not viewport

Real Example: Product Card

/* Container setup */
.product-grid {
  container-type: inline-size;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* Card base style */
.product-card {
  display: grid;
  grid-template-areas: 
    "image"
    "title"
    "price"
    "button";
}

/* When container > 300px: Horizontal layout */
@container (min-width: 300px) {
  .product-card {
    grid-template-areas: 
      "image title"
      "image price"
      "image button";
    grid-template-columns: 120px 1fr;
  }
}

/* When container > 500px: Full horizontal */
@container (min-width: 500px) {
  .product-card {
    grid-template-areas: "image title price button";
    grid-template-columns: 150px 1fr auto auto;
    align-items: center;
  }
}

🎯 Container Query Units

Unit Meaning
cqw 1% of container width
cqh 1% of container height
cqi 1% of container inline size
cqb 1% of container block size
/* Font size scales with container */
.card h2 {
  font-size: clamp(1rem, 5cqw, 2rem);
}

/* Padding relative to container */
.card {
  padding: 2cqi;
}

✅ When to Use Container Queries

  • Reusable components: Card, panel, widget in different contexts
  • Grid layouts: Items adapt to available space
  • Sidebar vs main: Same component, different widths
  • Design systems: Components work anywhere

⚠️ Browser Support

Current: 91% (Chrome 105+, Safari 16+, Firefox 110+)

Fallback: Use @supports to detect support

@supports (container-type: inline-size) {
  /* Container query styles */
}

/* Fallback for older browsers */
@media (max-width: 768px) {
  /* Media query fallback */
}

"Rebuilt our component library with container queries. Same card component works perfectly in sidebar, grid, full-width. No more variant props for different layouts. True responsive components."

— Design Systems Engineer

Related posts:

CSS: Use clamp() for Responsive Typography Without Media Queries

The aspect-ratio property

aspect-ratio Ends Padding Hacks Forever

Post Views: 4

Post navigation

Windows 11: Customize Windows Terminal for Professional Development
HTML5: Use Semantic Elements for Better SEO and Accessibility

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

April 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
27282930  
« Mar    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (950)
  • How to add default value for Entity Framework migrations for DateTime and Bool (858)
  • Get the First and Last Word from a String or Sentence in SQL (836)
  • How to select distinct rows in a datatable in C# (805)
  • How to make theater mode the default for Youtube (751)
  • Add Constraint to SQL Table to ensure email contains @ (578)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (564)
  • Average of all values in a column that are not zero in SQL (531)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (489)
  • Find numbers with more than two decimal places in SQL (447)

Recent Posts

  • C#: Use Init-Only Setters for Immutable Objects After Construction
  • C#: Use Expression-Bodied Members for Concise Single-Line Methods
  • C#: Enable Nullable Reference Types to Eliminate Null Reference Exceptions
  • C#: Use Record Types for Immutable Data Objects
  • SQL: Use CTEs for Readable Complex Queries
  • SQL: Use Window Functions for Advanced Analytical Queries
  • .NET Core: Use Background Services for Long-Running Tasks
  • .NET Core: Use Minimal APIs for Lightweight HTTP Services
  • Git: Use Cherry-Pick to Apply Specific Commits Across Branches
  • Git: Use Interactive Rebase to Clean Up Commit History Before Merge

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (950)
  • How to add default value for Entity Framework migrations for DateTime and Bool (858)
  • Get the First and Last Word from a String or Sentence in SQL (836)
  • How to select distinct rows in a datatable in C# (805)
  • How to make theater mode the default for Youtube (751)

Recent Posts

  • C#: Use Init-Only Setters for Immutable Objects After Construction
  • C#: Use Expression-Bodied Members for Concise Single-Line Methods
  • C#: Enable Nullable Reference Types to Eliminate Null Reference Exceptions
  • C#: Use Record Types for Immutable Data Objects
  • SQL: Use CTEs for Readable Complex Queries

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com