에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게 [공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류. 문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인). - Topic_Programming → Domain_Programming (내부 구조 보존) - Topic_Graphic → Domain_Design - Topic_Business → Domain_Product - Topic_General → Domain_General - _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning), Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing) - 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서) - 빈 폴더 정리 (memory/procedures) - 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
5.9 KiB
id, title, category, status, verification_status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, created_at, updated_at, review_reason, merge_history, tags, raw_sources, applied_in, github_commit
| id | title | category | status | verification_status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | created_at | updated_at | review_reason | merge_history | tags | raw_sources | applied_in | github_commit | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| html-layout | HTML Layout | Frontend | draft | conceptual |
|
B | 0.88 | 2026-06-23 | 2026-06-23 |
|
|
HTML Layout
🎯 한 줄 통찰 (One-line insight)
Web pages are commonly built from semantic layout elements (header, nav, section, article, aside, footer, details, summary) and arranged with CSS layout techniques such as frameworks, float, flexbox, and grid. [S1]
🧠 핵심 개념 (Core concepts)
- Multi-column display — websites often display content in multiple columns, like a magazine or a newspaper. [S1]
- Semantic layout elements — HTML provides elements that describe the role of each part of a page (header, nav, section, article, aside, footer, details, summary). [S1]
- Layout techniques — the page structure can be arranged using CSS frameworks, CSS float, CSS flexbox, or CSS grid. [S1]
- Semantics cross-reference — semantic elements are described further in the HTML Semantics chapter. [S1]
🧩 추출된 패턴 (Extracted patterns)
- Header / footer pattern —
<header>and<footer>bracket a document or section. [S1] - Navigation block —
<nav>groups a set of navigation links. [S1] - Content grouping —
<section>for thematic sections,<article>for independent self-contained content,<aside>for sidebar-style related content. [S1] - Disclosure widget —
<details>+<summary>for content the user can open and close on demand. [S1] - Layout strategy selection — choose a CSS technique (framework, float, flexbox, grid) for the visual arrangement. [S1]
📖 세부 내용 (Details)
HTML layout elements Websites often display content in multiple columns (like a magazine or a newspaper). HTML has several semantic elements that define the different parts of a web page: [S1]
| Element | Description |
|---|---|
<header> |
Defines a header for a document or a section |
<nav> |
Defines a set of navigation links |
<section> |
Defines a section in a document |
<article> |
Defines independent, self-contained content |
<aside> |
Defines content aside from the content (like a sidebar) |
<footer> |
Defines a footer for a document or a section |
<details> |
Defines additional details that the user can open and close on demand |
<summary> |
Defines a heading for the <details> element |
You can read more about semantic elements in the HTML Semantics chapter. [S1]
HTML layout techniques There are four techniques to create multi-column layouts. Each technique has its pros and cons: [S1]
- CSS framework — if you want to create your layout fast, you can use a CSS framework, like W3.CSS or Bootstrap. [S1]
- CSS float — you can create an entire web layout using the CSS
floatproperty. Float is easy to learn — you just need to remember how thefloatandclearproperties work. A disadvantage is that floating elements are tied to the document flow, which may harm flexibility. [S1] - CSS flexbox — use of flexbox ensures that elements behave predictably when the page layout must accommodate different screen sizes and different display devices. [S1]
- CSS grid — the CSS Grid Layout Module offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning. [S1]
🛠️ 적용 사례 (Applied in summary)
The semantic elements table and the four CSS techniques are themselves the applied guidance: combine semantic structure (header/nav/section/article/aside/footer) with one CSS technique (framework, float, flexbox, or grid) to build a page. No external project/commit applications found in the source.
💻 코드 패턴 (Code patterns)
Semantic page skeleton (composed from the layout elements described in the source):
<header>...</header>
<nav>...</nav>
<section>
<article>...</article>
<aside>...</aside>
</section>
<footer>...</footer>
Disclosure widget:
<details>
<summary>Heading</summary>
...additional details...
</details>
⚖️ 비교 및 선택 기준 (Comparison & decision criteria)
- CSS framework (W3.CSS / Bootstrap) — fastest way to create a layout. [S1]
- CSS float — easy to learn (
float+clear), but floating elements are tied to the document flow, which may harm flexibility. [S1] - CSS flexbox — predictable behavior across different screen sizes and display devices. [S1]
- CSS grid — row/column grid system that avoids the need for floats and positioning. [S1]
⚖️ 모순 및 업데이트 (Contradictions & updates)
No contradictions found in the source.
✅ 검증 상태 및 신뢰도
- 상태: draft
- 검증 단계: conceptual (실제 적용 사례 발견 시 applied/validated로 승격 가능)
- 출처 신뢰도: B (W3Schools — widely used educational reference, not a primary standards body)
- 신뢰 점수: 0.88
- 중복 검사 결과: 신규 생성 (New discovery)
🔗 지식 그래프 (Knowledge Graph)
- 상위/루트: HTML Tutorial
- 관련 개념: HTML Semantics, HTML Responsive, HTML Introduction, HTML Head
- 참조 맥락: Referenced when structuring the overall arrangement of a web page using semantic regions and a CSS layout technique.
📚 출처 (Sources)
- [S1] W3Schools — HTML Layout — https://www.w3schools.com/html/html_layout.asp
📝 변경 이력 (Change history)
- 2026-06-23: Initial draft synthesized from the W3Schools "HTML Layout" page (Astra wiki-curation, P-Reinforce v3.1 format).