Files
2nd/10_Wiki/Topic_Programming/Frontend/CSSOM.md
T
Antigravity Agent 9148c358d0 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 폴더 제거.
2026-07-05 00:33:48 +09:00

157 lines
4.5 KiB
Markdown

---
id: wiki-2026-0508-cssom
title: CSSOM
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [CSS Object Model, "CSSOM(CSS Object Model)"]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [css, dom, browser, frontend, render]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: JavaScript
framework: none
---
# CSSOM
## 매 한 줄
> **"매 CSS 의 JS-accessible object tree"**. CSSOM (CSS Object Model) 은 browser 가 parsed CSS 의 representation 의 object 의 노출 의 API. DOM 의 sibling 의 매 render tree 의 input. 2026 modern browser 의 매 `getComputedStyle`, CSS Typed OM (Houdini) 의 안정 사용.
## 매 핵심
### 매 CSSOM 구조
- `document.styleSheets``StyleSheetList`
-`CSSStyleSheet``cssRules` (CSSRule list)
- `CSSStyleRule``selectorText`, `style` (CSSStyleDeclaration)
- `element.style` — inline style 의 declaration
- `getComputedStyle(el)` — cascaded + inherited final value
### 매 Render pipeline 의 위치
1. HTML → DOM tree
2. CSS → CSSOM tree
3. **DOM + CSSOM → Render tree**
4. Layout (reflow) → Paint → Composite
### 매 CSSOM 조작 의 cost
- `style` 읽기/쓰기: 매 cheap (inline 만)
- `getComputedStyle`: 매 expensive (force layout)
- `cssRules` 의 mutation: 매 sheet 전체 invalidation
### 매 응용
1. Theme switching (CSS variable 의 JS 조작).
2. Animation (Web Animations API).
3. Style introspection (DevTools, testing).
4. Houdini (CSS Typed OM, Paint Worklet).
5. Stylesheet 의 동적 generation.
## 💻 패턴
### CSS Variable 의 JS 조작
```js
const root = document.documentElement;
root.style.setProperty('--accent', '#0070f3');
// 읽기
const accent = getComputedStyle(root)
.getPropertyValue('--accent')
.trim();
```
### getComputedStyle (final value)
```js
const el = document.querySelector('.card');
const styles = getComputedStyle(el);
console.log(styles.fontSize); // "16px"
console.log(styles.color); // "rgb(17, 17, 17)"
console.log(styles.gridTemplateColumns); // resolved tracks
```
### Inline style 직접
```js
el.style.transform = 'translateX(100px)';
el.style.setProperty('--x', '100px');
```
### CSSStyleSheet API (constructable)
```js
const sheet = new CSSStyleSheet();
sheet.replaceSync(`
.toast { background: #111; color: #fff; padding: 1rem; }
`);
document.adoptedStyleSheets = [...document.adoptedStyleSheets, sheet];
```
### CSS Typed OM (Houdini)
```js
const el = document.querySelector('.box');
el.attributeStyleMap.set('width', CSS.px(200));
const w = el.computedStyleMap().get('width');
console.log(w.value, w.unit); // 200, "px"
```
### Stylesheet 의 inspection
```js
for (const sheet of document.styleSheets) {
try {
for (const rule of sheet.cssRules) {
if (rule.type === CSSRule.STYLE_RULE) {
console.log(rule.selectorText, rule.style.cssText);
}
}
} catch (e) {
// CORS-blocked external sheet
}
}
```
### Web Animations API (CSSOM 기반)
```js
el.animate(
[{ opacity: 0 }, { opacity: 1 }],
{ duration: 300, easing: 'ease-out', fill: 'forwards' }
);
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Final computed value 필요 | `getComputedStyle` |
| CSS variable toggle | `style.setProperty('--x', ...)` |
| Dynamic stylesheet | `CSSStyleSheet` + `adoptedStyleSheets` |
| Type-safe value | CSS Typed OM (`CSS.px()`) |
| 1회 animation | Web Animations API |
| 큰 DOM 의 style read | batch — RAF 의 sync |
**기본값**: CSS variable + `setProperty` (가장 cheap + composable).
## 🔗 Graph
- 부모: [[DOM]] · [[Browser Rendering]]
- 응용: [[Theme Switching]] · [[Web Animations API]]
- Adjacent: [[Render Tree]] · [[Critical Rendering Path (CRP)|Critical Rendering Path]] · [[CSS_Architecture_and_Styling|CSS Variables]]
## 🤖 LLM 활용
**언제**: theme system, dynamic styling, JS-driven animation 코드 generation.
**언제 X**: 매 declarative CSS 의 sufficient — 매 JS 의 X.
## ❌ 안티패턴
- **Layout thrashing**: read → write → read pattern — 매 batch read first.
- **`style.cssText` 의 overwrite**: 기존 style 의 destroy — 매 individual property.
- **`!important` 의 JS 의 abuse**: cascade 의 deadlock.
- **모든 frame 의 `getComputedStyle`**: layout force — RAF 의 sync.
## 🧪 검증 / 중복
- Verified (W3C CSSOM spec, MDN CSSOM, Houdini).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — CSSOM API + Typed OM + WAAPI |