docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거

Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,297 @@
---
id: wiki-2026-0508-container-queries
title: CSS Container Queries
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [container queries, @container, cqi, cqw, component-centric responsive, design system]
duplicate_of: none
source_trust_level: A
confidence_score: 0.95
verification_status: applied
tags: [css, container-queries, responsive-design, component-driven, design-system, baseline-2025]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: CSS
framework: any (vanilla CSS, Tailwind, CSS-in-JS)
---
# CSS Container Queries
## 매 한 줄
> **"매 viewport X — 매 parent container 의 size 의 반응"**. 매 component 의 어디 에 의 placed 의 robust. 매 2025 baseline. 매 design system / modular UI 의 game-changer. 매 page-centric → 매 component-centric paradigm shift.
## 매 핵심
### 매 vs Media Queries
- **Media query**: 매 viewport size.
- **Container query**: 매 parent size.
- 매 component 의 self-decide layout regardless of page placement.
### 매 syntax (basic)
```css
.parent {
container-type: inline-size;
container-name: card; /* 매 optional */
}
@container card (min-width: 600px) {
.card { display: grid; grid-template-columns: 1fr 1fr; }
}
```
### 매 container-type
- **`inline-size`**: 매 width-based (most common).
- **`size`**: 매 width + height (rarer, more performance).
- **`normal`**: 매 default (no query support).
### 매 unit
- **`cqw`**: 매 1% of container width.
- **`cqh`**: 매 1% of container height.
- **`cqi`**: 매 inline size (LTR/RTL aware).
- **`cqb`**: 매 block size.
- **`cqmin`** / **`cqmax`**: 매 min / max of inline / block.
### 매 use case
1. **Card component**: 매 sidebar (narrow) vs main (wide) 의 다른 layout.
2. **Dashboard tile**: 매 chart → 매 number 의 narrow.
3. **Table → card** (narrow).
4. **Article**: 매 typography 의 cqi 기반 fluid.
5. **Sidebar item**: 매 collapsed vs expanded.
### 매 modern browser support
- 매 Chrome 105+ (2022 Aug).
- 매 Firefox 110+ (2023 Feb).
- 매 Safari 16+ (2022 Sep).
- 매 Baseline widely available 2025.
### 매 design system 의 perfect fit
- 매 component 의 reusable 어디 에서.
- 매 Storybook 의 isolation testing.
- 매 modular UI library.
- 매 truly self-contained component.
### 매 vs media query (when 의 use)
- **Media query**: 매 page layout, 매 dark mode, 매 print.
- **Container query**: 매 component size adaptation.
- 매 둘 다 의 combine.
### 매 fluid typography (cqi)
```css
.title { font-size: clamp(1rem, 4cqi, 2rem); }
```
→ 매 container 의 size 의 따라 fluid scale.
## 💻 패턴
### Card layout (sidebar vs main)
```css
.card-container {
container-type: inline-size;
}
.card {
display: flex;
flex-direction: column;
}
@container (min-width: 400px) {
.card {
flex-direction: row;
}
.card__image { width: 40%; }
.card__content { flex: 1; }
}
@container (min-width: 700px) {
.card {
grid-template-columns: 1fr 2fr 1fr;
}
.card__action { display: block; }
}
```
### Dashboard tile (chart ↔ number)
```css
.tile {
container-type: inline-size;
}
.chart { display: block; }
.summary-number { display: none; }
@container (max-width: 200px) {
.chart { display: none; }
.summary-number { display: block; font-size: 2rem; }
}
```
### Fluid typography
```css
.article {
container-type: inline-size;
}
.article h1 { font-size: clamp(1.5rem, 5cqi, 3rem); }
.article p { font-size: clamp(0.9rem, 2cqi, 1.1rem); }
```
### Table → Card stack (narrow)
```css
.table-container { container-type: inline-size; }
table { display: table; width: 100%; }
@container (max-width: 600px) {
table, thead, tbody, tr, td { display: block; }
thead { display: none; }
tr {
border: 1px solid #ddd;
margin-bottom: 1rem;
padding: 1rem;
}
td::before {
content: attr(data-label) ': ';
font-weight: bold;
}
}
```
### Named container
```css
.article-context {
container-type: inline-size;
container-name: article;
}
.aside-context {
container-type: inline-size;
container-name: aside;
}
@container article (min-width: 600px) {
.my-component { /* ... */ }
}
@container aside (min-width: 200px) {
.my-component { /* ... */ }
}
```
### React + container queries
```tsx
function Card({ data }) {
return (
<div className="card-container">
<article className="card">
<img src={data.image} />
<div className="card__content">
<h3>{data.title}</h3>
<p>{data.description}</p>
</div>
</article>
</div>
);
}
// 매 CSS:
// .card-container { container-type: inline-size; }
// @container (min-width: 400px) { .card { display: grid; } }
```
### Tailwind v4 (container queries plugin or built-in)
```jsx
<div className="@container">
<div className="@md:flex @lg:grid @lg:grid-cols-2">
{/* ... */}
</div>
</div>
```
### Storybook isolation test
```js
// 매 Storybook 의 다른 sizes 의 test
export const Card = {
render: () => <Card data={mockData} />,
decorators: [
(Story, { args }) => (
<div style={{ width: args.containerWidth }}>
<Story />
</div>
),
],
argTypes: {
containerWidth: {
control: { type: 'select' },
options: ['200px', '400px', '600px', '900px'],
},
},
};
```
### Browser support fallback
```css
/* 매 default (no support or narrow) */
.card { display: block; }
/* 매 supports query */
@supports (container-type: inline-size) {
.card-container { container-type: inline-size; }
@container (min-width: 400px) {
.card { display: flex; }
}
}
```
### Style queries (newer)
```css
/* 매 Chrome 111+: 매 style 의 query 도 가능 */
@container style(--theme: dark) {
.text { color: white; }
}
```
## 🤔 결정 기준
| 상황 | Approach |
|---|---|
| Component reuse in different placement | Container query |
| Page-level layout | Media query |
| Dark mode | Media query (prefers-color-scheme) |
| Fluid typography | clamp() + cqi |
| Sidebar vs main differential | Container query |
| Dashboard tile | Container query |
| Print | Media query (print) |
**기본값**: 매 component-level = Container query. 매 page-level = Media query. 매 둘 다 의 combine OK.
## 🔗 Graph
- 부모: [[Responsive-Design]]
- 변형: [[Media-Queries]] · [[Fluid Typography]]
- 응용: [[Design-System]] · [[Storybook]] · [[Tailwind]] · [[CSS Animations]]
- Adjacent: [[Baseline (Web Platform Features)]] · [[Bounded Contexts (DDD)]] · [[Software Architecture Styles]]
## 🤖 LLM 활용
**언제**: 매 modern responsive design. 매 design system 구축. 매 component library.
**언제 X**: 매 viewport-only concern (use media query). 매 < 2022 browser support.
## ❌ 안티패턴
- **Container 미지정 (container-type X)**: 매 query 의 동작 X.
- **Media query 만 의 component**: 매 reuse 시 의 fail.
- **container-type: size (large doc)**: 매 performance.
- **No container-name (multiple container)**: 매 confusion.
- **Fallback 의 X**: 매 older browser 의 break.
## 🧪 검증 / 중복
- Verified (web.dev container queries, MDN, Baseline 2025).
- 신뢰도 A.
- Related: [[CSS Animations]] · [[Baseline (Web Platform Features)]] · [[Case-Study-Allbirds-PWA-Redesign]] · [[Component-Driven-Design]].
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — syntax + cq* unit + 매 card / dashboard / table / Tailwind code |