--- id: howto-css-about-page title: "How To - CSS About Page" category: "Web_Recipes" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["about us page CSS", "team card layout"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.8 created_at: 2026-07-04 updated_at: 2026-07-04 review_reason: "" merge_history: [] tags: ["howto", "css", "w3schools", "layout", "cards"] raw_sources: ["https://www.w3schools.com/howto/howto_css_about_page.asp"] applied_in: [] github_commit: "" --- # [[HOWTO CSS About Page]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The team-card grid uses the OLDER `float: left` + `width: 33.3%` technique (not Flexbox/Grid) combined with the classic `::after { content: ""; clear: both; display: table; }` clearfix on the row container β€” a reminder that this recipe predates (or intentionally avoids) the Grid & Flexbox recipes covered elsewhere in this cookbook, and that float-based column layouts still require the clearfix hack to prevent the container from collapsing to zero height. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **`float: left` columns** β€” `.column { float: left; width: 33.3%; }` creates a 3-column grid without Flexbox/Grid. [S1] - **Clearfix on the row** β€” `.container::after, .row::after { content: ""; clear: both; display: table; }` prevents the floated columns from collapsing their parent's height. [S1] - **`box-sizing: border-box` reset** β€” applied globally via `html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }`, so padding doesn't add to declared widths. [S1] - **Responsive breakpoint** β€” `@media screen and (max-width: 650px) { .column { width: 100%; display: block; } }` stacks the columns on narrow screens. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) - Structure: an `.about-section` intro block, followed by a `.row` of three `.column > .card` team-member blocks (image, name, title, bio, email, contact button). [S1] - Card styling: `.card { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); margin: 8px; }` gives each team member a subtle elevation effect. [S1] - Button hover: `.button:hover { background-color: #555; }`. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) μ—†μŒ β€” μ‹ κ·œ λ ˆμ‹œν”Ό, κΈ°μ‘΄ λ¬Έμ„œμ™€ λͺ¨μˆœλ˜λŠ” λ‚΄μš© μ—†μŒ. ## πŸ› οΈ 적용 사둀 (Applied in summary) 3λͺ…μ˜ νŒ€μ› μΉ΄λ“œλ₯Ό λ‚˜μ—΄ν•˜λŠ” "About Us" νŽ˜μ΄μ§€ λ ˆμ΄μ•„μ›ƒ 전체가 μ›λ¬Έμ—μ„œ 직접 μ‹€μ „ 예제둜 μ œμ‹œλ¨. [S1] ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Float-based 3-column layout with clearfix and a responsive breakpoint (CSS): ```css .column { float: left; width: 33.3%; padding: 0 8px; } .row::after { content: ""; clear: both; display: table; } @media screen and (max-width: 650px) { .column { width: 100%; display: block; } } ``` ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference) - **μ‹ λ’° 점수:** 0.80 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[W3Schools HOW TO]] - **κ΄€λ ¨ κ°œλ…:** [[HOWTO CSS Cards]], [[HOWTO CSS Team]], [[HOWTO CSS Three Columns]] - **μ°Έμ‘° λ§₯락:** CSS Layout & Positioning μ„Ήμ…˜. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” How To - About Page β€” https://www.w3schools.com/howto/howto_css_about_page.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-07-04: Initial draft synthesized from the W3Schools "How To - About Page" recipe (Astra wiki-curation, P-Reinforce v3.1 format).