문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
wiki:css:css_note:responsive_web_design_-_grid_view [2021/07/06 09:14] emblim98 만듦 |
wiki:css:css_note:responsive_web_design_-_grid_view [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 1: | 줄 1: | ||
====== CSS Responsive Web Design - Grid-View ====== | ====== CSS Responsive Web Design - Grid-View ====== | ||
- | <WRAP left notice | + | <WRAP left notice |
* description : CSS Responsive Web Design - Grid-View | * description : CSS Responsive Web Design - Grid-View | ||
* author | * author | ||
줄 12: | 줄 12: | ||
====== What is a Grid-View? ====== | ====== What is a Grid-View? ====== | ||
+ | 많은 웹 페이지들은 그리드 뷰(grid-view)에 기반하고 있으며, 이는 페이지가 컬럼(세로 열)으로 구분되어 있다는 것을 의미합니다.\\ | ||
+ | {{: | ||
+ | \\ | ||
+ | 웹 페이지를 디자인할 때 그리드 뷰를 사용하는 것은 매우 유용합니다. 웹 페이지에 요소를 더 쉽게 배치할 수 있습니다.\\ | ||
+ | {{: | ||
+ | \\ | ||
+ | 반응형 그리드 뷰에는 12 개의 열이 있고, 총 너비는 100%이며 브라우저 창 크기를 조정하면 축소 및 확장됩니다.\\ | ||
+ | ===== Building a Responsive Grid-View ===== | ||
+ | 반응형 그리드 뷰 구축을 시작하겠습니다.\\ | ||
+ | \\ | ||
+ | 먼저 모든 %%HTML%% 요소에 '' | ||
+ | \\ | ||
+ | %%CSS%%에 다음 코드를 추가합니다.\\ | ||
+ | <code css> | ||
+ | * { | ||
+ | | ||
+ | } | ||
+ | </ | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음의 예제는 두 개의 컬럼이 있는 간단한 반응형 웹 페이지를 보여줍니다.\\ | ||
+ | {{: | ||
+ | ==== Example ==== | ||
+ | <code css> | ||
+ | < | ||
+ | * { | ||
+ | box-sizing: border-box; | ||
+ | } | ||
+ | .header { | ||
+ | border: 1px solid red; | ||
+ | padding: 15px; | ||
+ | } | ||
+ | |||
+ | .menu { | ||
+ | width: 25%; | ||
+ | float: left; | ||
+ | padding: 15px; | ||
+ | border: 1px solid blue; | ||
+ | } | ||
+ | |||
+ | .main { | ||
+ | width: 75%; | ||
+ | float: left; | ||
+ | padding: 15px; | ||
+ | border: 1px solid crimson; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | | ||
+ | <div class=" | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <ul> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ul> | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | < | ||
+ | <p> | ||
+ | Chania is the capital of the Chania region on the island of Crete. | ||
+ | The city can be divided in two parts, the old town and the modern city. | ||
+ | </p> | ||
+ | <p> | ||
+ | Resize the browser window to see how the content respond to the resizing. | ||
+ | </p> | ||
+ | </ | ||
+ | | ||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | 위의 예제는 웹 페이지에 두 개의 컬럼만 포함되어 있으면 괜찮습니다.\\ | ||
+ | \\ | ||
+ | 그러나 웹 페이지를 더 잘 제어하기 위해 12개의 컬럼이 있는 반응형 그리드 뷰를 사용하려고 합니다.\\ | ||
+ | \\ | ||
+ | 먼저 하나의 컬럼에 대한 백분율을 계산해야 합니다. 100% / 12 컬럼 = 8.33 %.\\ | ||
+ | \\ | ||
+ | 그런 다음 12개 컬럼 각각에 대한 하나의 클래스 '' | ||
+ | \\ | ||
+ | ====CSS: | ||
+ | <code css> | ||
+ | .col-1 { width: 8.33%;} | ||
+ | .col-2 { width: 12.66%;} | ||
+ | .col-3 { width: 25%;} | ||
+ | .col-4 { width: 33.33%;} | ||
+ | .col-5 { width: 41.66%;} | ||
+ | .col-6 { width: 50%;} | ||
+ | .col-7 { width: 58.33%;} | ||
+ | .col-8 { width: 66.66%;} | ||
+ | .col-9 { width: 75%;} | ||
+ | .col-10 { width: 83.33%;} | ||
+ | .col-11 { width: 91.66%;} | ||
+ | .col-12 { width: 100%;} | ||
+ | </ | ||
+ | \\ | ||
+ | 이 모든 컬럼은 왼쪽으로 float되어야 하며, padding은 15px입니다: | ||
+ | \\ | ||
+ | ====CSS: | ||
+ | <code css> | ||
+ | [class*=" | ||
+ | float: left; | ||
+ | padding: 15px; | ||
+ | border: 1px solid red; | ||
+ | } | ||
+ | </ | ||
+ | \\ | ||
+ | 각 row(가로 행)은 %%< | ||
+ | \\ | ||
+ | ====HTML: | ||
+ | <code html> | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | </ | ||
+ | \\ | ||
+ | row(가로 행) 내부의 컬럼은 모두 왼쪽으로 플로팅되어 페이지 흐름에서 제거되고, | ||
+ | \\ | ||
+ | ====CSS: | ||
+ | <code css> | ||
+ | .row::after { | ||
+ | content:""; | ||
+ | clear: both; | ||
+ | display: table; | ||
+ | } | ||
+ | </ | ||
+ | \\ | ||
+ | 또한 몇 가지 스타일과 컬러를 추가하여 더 보기 좋게 만듭니다.\\ | ||
+ | |||
+ | ==== Example ==== | ||
+ | <code css> | ||
+ | < | ||
+ | * { | ||
+ | box-sizing: border-box; | ||
+ | } | ||
+ | |||
+ | .row::after { | ||
+ | content:""; | ||
+ | clear: both; | ||
+ | display: table; | ||
+ | } | ||
+ | [class*=" | ||
+ | float: left; | ||
+ | padding: 15px; | ||
+ | } | ||
+ | |||
+ | .col-1 { width: 8.33%;} | ||
+ | .col-2 { width: 12.66%;} | ||
+ | .col-3 { width: 25%;} | ||
+ | .col-4 { width: 33.33%;} | ||
+ | .col-5 { width: 41.66%;} | ||
+ | .col-6 { width: 50%;} | ||
+ | .col-7 { width: 58.33%;} | ||
+ | .col-8 { width: 66.66%;} | ||
+ | .col-9 { width: 75%;} | ||
+ | .col-10 { width: 83.33%;} | ||
+ | .col-11 { width: 91.66%;} | ||
+ | .col-12 { width: 100%;} | ||
+ | |||
+ | html { | ||
+ | font-family: | ||
+ | } | ||
+ | |||
+ | .header { | ||
+ | background-color: | ||
+ | color: #ffffff; | ||
+ | padding: 15px; | ||
+ | } | ||
+ | |||
+ | .menu ul { | ||
+ | list-style-type: | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | } | ||
+ | |||
+ | .menu li { | ||
+ | padding: 8px; | ||
+ | margin-bottom: | ||
+ | background-color: | ||
+ | color: #ffffff; | ||
+ | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); | ||
+ | } | ||
+ | |||
+ | .menu li:hover { | ||
+ | background-color: | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | | ||
+ | <div class=" | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <ul> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ul> | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | < | ||
+ | <p> | ||
+ | Chania is the capital of the Chania region on the island of Crete. | ||
+ | The city can be divided in two parts, the old town and the modern city. | ||
+ | </p> | ||
+ | <p> | ||
+ | Resize the browser window to see how the content respond to the resizing. | ||
+ | </p> | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | \\ | ||
+ | 브라우저 창을 매우 작은 너비로 크기를 조정하면 예제의 웹 페이지가 보기 좋지 않습니다. 다음 챕터에서는 이를 수정하는 방법을 보겠습니다.\\ | ||
{{tag> | {{tag> |