Materialize CSS
문제 발생:
0. 요약: Class
1. set background color
class="card-panel teal lighten-2"
class="card-panel dark"
2. set text color
-text
to the color classclass="teal-text text-lighten-2"
class="dark-text text-darken-2"
3. set the body content's width
ASD
valign-wrapper
1.2 사용 방법: div class="valign-wrapper">
left-align
right-align
center-align
2.2 사용 방법:
This should be right aligned
5. quickly float things
which is used to avoid specificity issues
left
, right
div class="left">
div class="right">
6.1 navbar 정렬 설정
class="brand-logo center"
로고 가운데 설정
navbar links 가운데 설정
6.2 Active Items
class="active"
JavaScript
6.3 Extended Navbar with Tabs
확장된 구성 요소를navbar에 추가하려면 클래스
nav-extended
를 외부에 추가해야 합니다nav-extended
6.4 Fixed Navbar
navbar-fixed
. navbar-fixed
6.5 Navbar 드롭다운 메뉴
ul
dropdown structure into the page. id
of the dropdown structure to the data-target
attribute of the dropdown trigger. navbar-fixed
---
\***** \*****
---
## 1. Color
> 1. background color: ``` class="card-panel teal lighten-2"```
> 2. text color: ```class="blue-text text-darken-2"```
//Background Color This is a card panel with a teal lighten-2 class //Text color ,To apply a text color, just append ' -text ' to the color class like this This is a card panel with dark blue text
## 2. Grid
> - standard 12 column fluid responsive grid system.
> 1. grid
> 2. container 70% , 。
The container class is set to ~70% of the window width. It helps you center and contain your page content. We use the container to contain our body content.
> 3. grid :
, grid 12
> 4. column row , class ```col ``` div column。
> 5. ```offset-s6``` 6
> 6. ```div class="col s7 push-s5"``` , ```class="col s5 pull-s7``` push ,pull
> 7. ```class="section"``` used for simple top and bottom padding
> 8. ```class="divider"``` are 1 pixel lines that help break up your content.( )
> 9.
### 1. columns contained inside a row
this div is 6-columns wide on all screen sizes
### 2. push and pull
This div is 7-columns wide on pushed to the right by 5-columns. 5-columns wide pulled to the left by 7-columns.
### 3. offset
6-columns 6-columns
### 4. section and divider
section1 stuff
### 5. Promotion Table
3 div, div 4-columns
Promo Content 1 goes heres Promo Content 2 goes heres Promo Content 3 goes heres
### 6. Side Navigation Layout
Grey navigation panel Teal page content
### 7. create responsive layouts
How to layout elements using our grid system. Show you how to design you layouts so that they look great on all screen sizes.
**Screen Sizes**
| | Mobile Devices | Tablet Devices | Desktop Devices | Large Desktop Devices |
:-: | :-: | :-: | :-: | :-: |
|screen sizes|<= 600px |<= 600px | > 992px | > 1200px |
class prefix | .s | .m | .l | .xl
container width| 90% | 85% | 70% | 70%
number of columns| 12 | 12 | 12 |12|
where s signifies the screen class-prefix (s = small, m = medium, l = large)
#### 7.1 adding responsiveness
-
I am always full-width (col s12) I am full-width on mobile (col s12 m6)
#### 7.2 Responsive Side Navigation Layout
L
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.