Files
2nd/10_Wiki/Dev/Topic_W3CSS/W3CSS_Lists.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.8 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
w3css-lists W3CSS Lists Programming_Language draft conceptual
w3-ul
avatar list
W3.CSS 리스트
B 0.88 2026-07-04 2026-07-04
w3css
css-framework
w3schools
lists
https://www.w3schools.com/w3css/w3css_lists.asp

W3CSS Lists

🎯 한 줄 통찰 (One-line insight)

The "Avatar List" pattern reuses w3-bar-item (a button/bar utility class from the Buttons chapter) INSIDE a <li> instead of a button — combining an image, text block, and dismiss button as three w3-bar-item siblings — showing that W3.CSS's bar-layout mechanism generalizes beyond navigation bars to any horizontal row of mixed content, including list items. [S1]

🧠 핵심 개념 (Core concepts)

  • w3-ul — base list container class. [S1]
  • 100% width by default — lists span their parent's full width unless overridden with inline style="width:...". [S1]
  • Reused patterns from other chaptersw3-border, w3-card-4, w3-center, color classes, w3-hoverable, size classes (w3-tiny through w3-jumbo) all apply identically to lists as they did to tables/panels/buttons. [S1]
  • Closable list item — same &times; + inline onclick dismiss pattern as panels/alerts, wrapped in w3-display-container on the <li>. [S1]
  • Avatar list — combines w3-bar (on the <li>), w3-bar-item (on image/text/close-button), and w3-circle (on the avatar image) into a contact-list-style row. [S1]

📖 세부 내용 (Details)

  • Basic list: <ul class="w3-ul"><li>Jill</li><li>Eve</li><li>Adam</li></ul>. [S1]
  • Closable item: <li class="w3-display-container">Jill <span onclick="this.parentElement.style.display='none'" class="w3-button w3-display-right">&times;</span></li>. [S1]
  • Avatar list item: <li class="w3-bar"><span onclick="..." class="w3-bar-item w3-button w3-xlarge w3-right">&times;</span><img src="img_avatar2.png" class="w3-bar-item w3-circle" style="width:85px"><div class="w3-bar-item"><span class="w3-large">Mike</span><br><span>Web Designer</span></div></li>. [S1]

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

소스에서 모순되는 정보는 발견되지 않음.

🛠️ 적용 사례 (Applied in summary)

현재 발견된 실제 적용 사례가 없습니다 — 아바타+이름+직함+닫기 버튼을 한 줄에 배치하는 아바타 리스트가 연락처 UI의 대표 실전 사례다. [S1]

💻 코드 패턴 (Code patterns)

Avatar list item combining bar-item, circle image, and close button (HTML):

<li class="w3-bar">
  <span onclick="this.parentElement.style.display='none'"
        class="w3-bar-item w3-button w3-xlarge w3-right">&times;</span>
  <img src="img_avatar2.png" class="w3-bar-item w3-circle" style="width:85px">
  <div class="w3-bar-item">
    <span class="w3-large">Mike</span><br>
    <span>Web Designer</span>
  </div>
</li>

검증 상태 및 신뢰도

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

🔗 지식 그래프 (Knowledge Graph)

📚 출처 (Sources)

📝 변경 이력 (Change history)

  • 2026-07-04: Initial draft synthesized from the W3Schools "W3.CSS Lists" page (Astra wiki-curation, P-Reinforce v3.1 format).