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:
2026-06-23 19:21:18 +09:00
parent 8957890d13
commit 9609c04755
379 changed files with 54618 additions and 6 deletions
+127
View File
@@ -0,0 +1,127 @@
---
id: css-other-form-elements
title: "CSS Other Form Elements"
category: "Frontend"
status: "draft"
verification_status: "conceptual"
canonical_id: ""
aliases: ["CSS form elements", "style textarea", "style select dropdown", "style form buttons", "responsive form"]
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: ["css", "web", "frontend", "w3schools", "forms", "textarea", "select", "buttons"]
raw_sources: ["https://www.w3schools.com/css/css_form_elements.asp"]
applied_in: []
github_commit: ""
---
# [[CSS Other Form Elements]]
## 🎯 한 줄 통찰 (One-line insight)
Beyond text inputs, CSS can style textareas, dropdown `<select>` menus, and form buttons — and with a media query, a form can switch from horizontal to a vertically stacked responsive layout below 600px. [S1]
## 🧠 핵심 개념 (Core concepts)
- **Textarea** — by default a `<textarea>` can be resized with a "grabber" in the bottom-right corner; setting `resize: none;` removes the grabber. [S1]
- **Dropdown menu** — `<select>` elements can be styled with padding, border removal, border-radius, and background color. [S1]
- **Form buttons** — buttons of type "button", "submit", and "reset" can be styled with CSS. [S1]
- **Responsive form** — CSS media queries adapt the form layout when the screen narrows. [S1]
## 🧩 추출된 패턴 (Extracted patterns)
- **`box-sizing: border-box`** — keep padded fields at their declared width by including padding/border in the box width. [S1]
- **Disable native affordances** — remove the textarea resize grabber (`resize: none;`) and the `<select>` border (`border: none;`) for a custom look. [S1]
- **Type-attribute selectors for buttons** — target `input[type=button]`, `input[type=submit]`, and `input[type=reset]` together to style all action buttons uniformly. [S1]
## 📖 세부 내용 (Details)
**Style Textarea**
By default, a `<textarea>` can be resized with a "grabber" in the bottom right corner. To remove the grabber, set the `resize` property to `none`: [S1]
```css
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
resize: none;
}
```
**Style a Dropdown Menu**
A `<select>` element can be styled as follows: [S1]
```css
select {
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
background-color: #f1f1f1;
}
```
**Style Form Buttons**
Form buttons of type "button", "submit" and "reset" can also be styled with CSS: [S1]
```css
input[type=button], input[type=submit], input[type=reset] {
background-color: #04AA6D;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
/* Tip: use width: 100% for full-width buttons */
```
**Note:** For more information about how to style buttons, read the CSS Buttons Tutorial. [S1]
**CSS Responsive Form**
The page demonstrates using CSS media queries to create responsive forms that adapt the layout when the screen width drops below 600px, stacking form labels and input fields vertically. [S1]
## 🛠️ 적용 사례 (Applied in summary)
The page's examples are the applied cases: a non-resizable styled textarea, a borderless rounded `<select>`, a green action-button group, and a media-query-driven responsive form. No external project/commit applications found in the source.
## 💻 코드 패턴 (Code patterns)
Borderless textarea without resize grabber (language: CSS):
```css
textarea {
box-sizing: border-box;
resize: none;
}
```
Group all action buttons by type (language: CSS):
```css
input[type=button], input[type=submit], input[type=reset] {
background-color: #04AA6D;
border: none;
color: white;
cursor: pointer;
}
```
## ⚖️ 모순 및 업데이트 (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)
- **상위/루트:** [[CSS Tutorial]]
- **관련 개념:** [[CSS Input Focus and Icons]], [[CSS Forms]], [[CSS Buttons]], [[CSS Media Queries]]
- **참조 맥락:** Referenced when styling non-text form controls and making a form layout responsive.
## 📚 출처 (Sources)
- [S1] W3Schools — CSS Other Form Elements — https://www.w3schools.com/css/css_form_elements.asp
## 📝 변경 이력 (Change history)
- 2026-06-23: Initial draft synthesized from the W3Schools "CSS Other Form Elements" page (Astra wiki-curation, P-Reinforce v3.1 format).