docs(10_Wiki): W3Schools 위키화 — HTML/CSS/JavaScript(core)
W3Schools 튜토리얼을 P-Reinforce v3.1 포맷으로 위키화(영어 본문, 한/영 섹션 헤더). - Topic_HTML: 59문서 (튜토리얼+예제, 레퍼런스/메타 제외) - Topic_CSS: 190문서 (메인 + Advanced/Flexbox/Grid/RWD 전체) - Topic_JavaScript: 120문서 (코어 언어; Temporal/DOM상세/BOM/WebAPI/AJAX/jQuery/Graphics 등은 후속) 각 폴더 00_INDEX.md(MOC) 포함. 코드 verbatim, 미확인분은 "Not found in source" 표기. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
---
|
||||
id: css-styling-forms
|
||||
title: "CSS Styling Forms"
|
||||
category: "Frontend"
|
||||
status: "draft"
|
||||
verification_status: "conceptual"
|
||||
canonical_id: ""
|
||||
aliases: ["styling forms", "CSS forms", "form styling", "style HTML form", "form CSS"]
|
||||
duplicate_of: ""
|
||||
source_trust_level: "B"
|
||||
confidence_score: 0.85
|
||||
created_at: 2026-06-23
|
||||
updated_at: 2026-06-23
|
||||
review_reason: ""
|
||||
merge_history: []
|
||||
tags: ["css", "web", "frontend", "w3schools", "forms", "inputs"]
|
||||
raw_sources: ["https://www.w3schools.com/css/css_forms.asp"]
|
||||
applied_in: []
|
||||
github_commit: ""
|
||||
---
|
||||
|
||||
# [[CSS Styling Forms]]
|
||||
|
||||
## 🎯 한 줄 통찰 (One-line insight)
|
||||
CSS is used to style HTML forms, and the look of an HTML form can be greatly improved with CSS by controlling properties such as `width`, `padding`, `margin`, `border`, `border-radius`, `background-color`, `color`, and `font-size`. [S1]
|
||||
|
||||
## 🧠 핵심 개념 (Core concepts)
|
||||
- **Forms are styleable** — CSS is used to style HTML forms; the look of an HTML form can be greatly improved with CSS. [S1]
|
||||
- **Commonly used properties** — the properties commonly used for styling input fields are `width`, `padding`, `margin`, `border`, `border-radius`, `background-color`, `color`, and `font-size`. [S1]
|
||||
- **Per-control styling** — forms contain inputs, textareas, select menus, and buttons, each of which can be targeted and styled (detailed examples appear on the related "Style Inputs" page). [S1]
|
||||
|
||||
## 🧩 추출된 패턴 (Extracted patterns)
|
||||
- **Property toolkit** — reach for the same recurring set (`width`, `padding`, `margin`, `border`, `border-radius`, `background-color`, `color`, `font-size`) when styling form controls. [S1]
|
||||
|
||||
## 📖 세부 내용 (Details)
|
||||
**Styling forms with CSS**
|
||||
CSS is used to style HTML forms. The look of an HTML form can be greatly improved with CSS. [S1]
|
||||
|
||||
**Commonly used properties for input fields** [S1]
|
||||
| Property | Purpose (per source) |
|
||||
| --- | --- |
|
||||
| `width` | size of the input field |
|
||||
| `padding` | space inside the field |
|
||||
| `margin` | space around the field |
|
||||
| `border` | border size and color |
|
||||
| `border-radius` | rounded corners |
|
||||
| `background-color` | field background |
|
||||
| `color` | text color |
|
||||
| `font-size` | text size |
|
||||
|
||||
> Note: The W3Schools "CSS Forms" page is an overview that introduces form styling and the property list above; its detailed per-control code examples (padded inputs, bordered inputs, focused inputs, icons, animated search, textareas, select menus, buttons, responsive form) are presented on the related "Style Inputs" page. The verbatim code for those examples is not found in this overview source — see [[CSS Styling Inputs]]. "Not found in source" for the per-control example code on this page.
|
||||
|
||||
## 🛠️ 적용 사례 (Applied in summary)
|
||||
This overview page introduces the property set used across all form-control styling. The concrete applied examples live on [[CSS Styling Inputs]]. No external project/commit applications found in the source.
|
||||
|
||||
## 💻 코드 패턴 (Code patterns)
|
||||
The recurring input-styling property set (language: CSS):
|
||||
```css
|
||||
input {
|
||||
width: ...;
|
||||
padding: ...;
|
||||
margin: ...;
|
||||
border: ...;
|
||||
border-radius: ...;
|
||||
background-color: ...;
|
||||
color: ...;
|
||||
font-size: ...;
|
||||
}
|
||||
```
|
||||
|
||||
## ⚖️ 모순 및 업데이트 (Contradictions & updates)
|
||||
No contradictions found in the source.
|
||||
|
||||
## ✅ 검증 상태 및 신뢰도
|
||||
- **상태:** draft
|
||||
- **검증 단계:** conceptual (실제 적용 사례 발견 시 applied/validated로 승격 가능)
|
||||
- **출처 신뢰도:** B (W3Schools — widely used educational reference, not a primary standards body)
|
||||
- **신뢰 점수:** 0.85
|
||||
- **중복 검사 결과:** 신규 생성 (New discovery)
|
||||
|
||||
## 🔗 지식 그래프 (Knowledge Graph)
|
||||
- **상위/루트:** [[CSS Tutorial]]
|
||||
- **관련 개념:** [[CSS Styling Inputs]], [[CSS Advanced Attribute Selectors]], [[CSS Buttons]]
|
||||
- **참조 맥락:** Entry point for improving the appearance of HTML forms; defers to the inputs page for concrete examples.
|
||||
|
||||
## 📚 출처 (Sources)
|
||||
- [S1] W3Schools — CSS Styling Forms — https://www.w3schools.com/css/css_forms.asp
|
||||
|
||||
## 📝 변경 이력 (Change history)
|
||||
- 2026-06-23: Initial draft synthesized from the W3Schools "CSS Styling Forms" page (Astra wiki-curation, P-Reinforce v3.1 format).
|
||||
Reference in New Issue
Block a user