Files
2nd/10_Wiki/Dev/Topic_HOWTO/HOWTO_CSS_Round_Buttons.md
T
Antigravity Agent 1cfd3bbb56 docs(10_Wiki): 위키 구조 정리 — 언어 튜토리얼 카테고리 폴더 제거 + 신규 자산 동기화
Topic_CSS/Topic_HTML/Topic_JavaScript/Topic_Prompt/Topic_Comfyui 등 기존 카테고리 폴더를 정리하고,
Topic_Graphic/Dev 등 신규 산출물과 Topics 내부 세션/메모리 기록을 동기화.
2026-07-05 00:10:59 +09:00

3.3 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
howto-css-round-buttons How To - Round Buttons Web_Recipes draft conceptual
circle button CSS
border-radius spectrum
B 0.8 2026-07-04 2026-07-04
howto
css
w3schools
buttons
https://www.w3schools.com/howto/howto_css_round_buttons.asp

HOWTO CSS Round Buttons

🎯 한 줄 통찰 (One-line insight)

This recipe demonstrates the FULL border-radius spectrum in one place — five buttons with identical base styling but five different radius values (2px, 4px, 8px, 12px, 50%) — making explicit what [[HOWTO CSS Pill Button]] only implied: border-radius is a continuous dial from "barely rounded corners" to "fully circular," and pill/round buttons are just two named stops along that same dial rather than distinct techniques. [S1]

🧠 핵심 개념 (Core concepts)

  • Shared base class + radius-only modifiers.button sets background/padding/color once; five .buttonN classes each differ ONLY in border-radius value. [S1]
  • border-radius: 50% — the endpoint of the spectrum, producing a full circle (requires roughly equal width/height, which square padding here approximates). [S1]

📖 세부 내용 (Details)

  • .button { background-color: #04AA6D; border: none; color: white; padding: 20px; } .button1 {border-radius: 2px;} .button2 {border-radius: 4px;} .button3 {border-radius: 8px;} .button4 {border-radius: 12px;} .button5 {border-radius: 50%;}. [S1]

⚖️ 모순 및 업데이트 (Contradictions & updates)

  • Pill Button과 동일한 속성 스펙트럼의 시각적 증명: [[HOWTO CSS Pill Button]]이 16px 하나의 값만 보여줬다면, 이 레시피는 2px부터 50%까지 다섯 단계를 나란히 배치해 border-radius가 연속적인 값의 스펙트럼임을 명시적으로 보여준다는 점이 확인됨. [S1]

🛠️ 적용 사례 (Applied in summary)

동일한 버튼에 border-radius 값만 2px/4px/8px/12px/50%로 바꿔가며 다섯 가지 결과를 나란히 비교하는 예제가 원문에서 직접 제시됨. [S1]

💻 코드 패턴 (Code patterns)

Border-radius spectrum from barely-rounded to fully circular (CSS):

.button { background-color: #04AA6D; border: none; color: white; padding: 20px; }
.button1 { border-radius: 2px; }
.button5 { border-radius: 50%; } /* fully circular */

검증 상태 및 신뢰도

  • 상태: draft
  • 검증 단계: conceptual
  • 출처 신뢰도: B (W3Schools — widely used educational reference)
  • 신뢰 점수: 0.80
  • 중복 검사 결과: 신규 생성 (New discovery)

🔗 지식 그래프 (Knowledge Graph)

📚 출처 (Sources)

📝 변경 이력 (Change history)

  • 2026-07-04: Initial draft synthesized from the W3Schools "How To - Round Buttons" recipe (Astra wiki-curation, P-Reinforce v3.1 format).