refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 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>
This commit is contained in:
@@ -0,0 +1,170 @@
|
||||
---
|
||||
id: html-div
|
||||
title: "HTML Div"
|
||||
category: "Frontend"
|
||||
status: "draft"
|
||||
verification_status: "conceptual"
|
||||
canonical_id: ""
|
||||
aliases: ["div element", "div tag", "block container", "div layout", "div centering"]
|
||||
duplicate_of: ""
|
||||
source_trust_level: "B"
|
||||
confidence_score: 0.88
|
||||
created_at: 2026-06-23
|
||||
updated_at: 2026-06-23
|
||||
review_reason: ""
|
||||
merge_history: []
|
||||
tags: ["html", "web", "frontend", "w3schools", "layout"]
|
||||
raw_sources: ["https://www.w3schools.com/html/html_div.asp"]
|
||||
applied_in: []
|
||||
github_commit: ""
|
||||
---
|
||||
|
||||
# [[HTML Div]]
|
||||
|
||||
## 🎯 한 줄 통찰 (One-line insight)
|
||||
The `<div>` element is a block-level container that groups other HTML elements together so they can be styled and laid out as a unit. [S1]
|
||||
|
||||
## 🧠 핵심 개념 (Core concepts)
|
||||
- **`<div>` is a container** for other HTML elements. [S1]
|
||||
- **Block-level by default** — the `<div>` element is by default a block element, meaning it takes all available width and comes with line breaks before and after. [S1]
|
||||
- **No required attributes** — the `<div>` element has no required attributes, but `style`, `class`, and `id` are common. [S1]
|
||||
- **Centering** — to center a non-full-width `<div>`, set a width and the CSS `margin` property to `auto`. [S1]
|
||||
- **Side-by-side layout** — multiple `<div>` elements can be aligned horizontally using Float, Inline-block, Flexbox, or Grid. [S1]
|
||||
|
||||
## 🧩 추출된 패턴 (Extracted patterns)
|
||||
- **Grouping pattern** — wrap a heading and its paragraph(s) in a `<div>` to treat them as one logical section. [S1]
|
||||
- **Centering pattern** — give the `<div>` a fixed width and `margin: auto` to center it horizontally. [S1]
|
||||
- **Horizontal layout pattern** — apply a layout technique (Float / Inline-block / Flexbox / Grid) to place several `<div>` containers in columns. [S1]
|
||||
|
||||
## 📖 세부 내용 (Details)
|
||||
**The `<div>` Element.** The `<div>` element is used as a container for other HTML elements. The `<div>` element is by default a block element, meaning that it takes all available width, and comes with line breaks before and after. The `<div>` element has no required attributes, but `style`, `class`, and `id` are common. [S1]
|
||||
|
||||
Grouping a section with a `<div>`: [S1]
|
||||
```html
|
||||
<div>
|
||||
<h2>London</h2>
|
||||
<p>London is the capital city of England.</p>
|
||||
</div>
|
||||
```
|
||||
|
||||
**Center align a `<div>` element.** If you have a `<div>` element that is not 100% wide, and you want to center-align it, set the CSS `margin` property to `auto`. [S1]
|
||||
```css
|
||||
div {
|
||||
width: 300px;
|
||||
margin: auto;
|
||||
}
|
||||
```
|
||||
|
||||
**Multiple `<div>` elements.** You can have many `<div>` containers on the same page. [S1]
|
||||
```html
|
||||
<div>
|
||||
<h2>London</h2>
|
||||
<p>London is the capital city of England.</p>
|
||||
</div>
|
||||
<div>
|
||||
<h2>Oslo</h2>
|
||||
<p>Oslo is the capital city of Norway.</p>
|
||||
</div>
|
||||
```
|
||||
|
||||
**Aligning `<div>` elements side by side.** There are several CSS methods to lay out `<div>` elements horizontally. [S1]
|
||||
|
||||
*Float* — use `float: left` with percentage widths (e.g. 33% for three columns): [S1]
|
||||
```css
|
||||
.mycontainer {
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
.mycontainer div {
|
||||
width: 33%;
|
||||
float: left;
|
||||
}
|
||||
```
|
||||
|
||||
*Inline-block* — change the display property from block to `inline-block`: [S1]
|
||||
```css
|
||||
div {
|
||||
width: 30%;
|
||||
display: inline-block;
|
||||
}
|
||||
```
|
||||
|
||||
*Flexbox* — apply `display: flex` on a parent container: [S1]
|
||||
```css
|
||||
.mycontainer {
|
||||
display: flex;
|
||||
}
|
||||
.mycontainer > div {
|
||||
width: 33%;
|
||||
}
|
||||
```
|
||||
|
||||
*Grid* — use `display: grid` with the `grid-template-columns` property: [S1]
|
||||
```css
|
||||
.grid-container {
|
||||
display: grid;
|
||||
grid-template-columns: 33% 33% 33%;
|
||||
}
|
||||
```
|
||||
|
||||
**HTML Tag Reference.** [S1]
|
||||
|
||||
| Tag | Description |
|
||||
|---|---|
|
||||
| `<div>` | Defines a section in a document (block-level) |
|
||||
|
||||
## 🛠️ 적용 사례 (Applied in summary)
|
||||
The city-grouping examples (London, Oslo) and the four horizontal-layout techniques (Float, Inline-block, Flexbox, Grid) are the canonical applied examples. No external project/commit applications found in the source.
|
||||
|
||||
## 💻 코드 패턴 (Code patterns)
|
||||
Container div (HTML):
|
||||
```html
|
||||
<div>
|
||||
<h2>Title</h2>
|
||||
<p>Content.</p>
|
||||
</div>
|
||||
```
|
||||
Centered div (CSS):
|
||||
```css
|
||||
div {
|
||||
width: 300px;
|
||||
margin: auto;
|
||||
}
|
||||
```
|
||||
Three-column flexbox (CSS):
|
||||
```css
|
||||
.mycontainer {
|
||||
display: flex;
|
||||
}
|
||||
.mycontainer > div {
|
||||
width: 33%;
|
||||
}
|
||||
```
|
||||
|
||||
## ⚖️ 비교 및 선택 기준 (Comparison & decision criteria)
|
||||
For aligning `<div>` elements side by side, the source presents four approaches: [S1]
|
||||
- **Float** — `float: left` with percentage widths; container uses `overflow: auto`.
|
||||
- **Inline-block** — set `display: inline-block` and a width on each div.
|
||||
- **Flexbox** — `display: flex` on the parent container (modern, flexible).
|
||||
- **Grid** — `display: grid` with `grid-template-columns` (advanced layout control).
|
||||
|
||||
## ⚖️ 모순 및 업데이트 (Contradictions & updates)
|
||||
No contradictions found in the source. [S1]
|
||||
|
||||
## ✅ 검증 상태 및 신뢰도
|
||||
- **상태:** draft
|
||||
- **검증 단계:** conceptual (실제 적용 사례 발견 시 applied/validated로 승격 가능)
|
||||
- **출처 신뢰도:** B (W3Schools — widely used educational reference, not a primary standards body)
|
||||
- **신뢰 점수:** 0.88
|
||||
- **중복 검사 결과:** 신규 생성 (New discovery)
|
||||
|
||||
## 🔗 지식 그래프 (Knowledge Graph)
|
||||
- **상위/루트:** [[HTML Tutorial]]
|
||||
- **관련 개념:** [[HTML Block and Inline]], [[HTML Classes]], [[HTML Id]], [[HTML Iframes]]
|
||||
- **참조 맥락:** Referenced whenever grouping or laying out page sections as block-level containers.
|
||||
|
||||
## 📚 출처 (Sources)
|
||||
- [S1] W3Schools — HTML Div Element — https://www.w3schools.com/html/html_div.asp
|
||||
|
||||
## 📝 변경 이력 (Change history)
|
||||
- 2026-06-23: Initial draft synthesized from the W3Schools "HTML Div Element" page (Astra wiki-curation, P-Reinforce v3.1 format).
|
||||
Reference in New Issue
Block a user