1. Bootstrap components
Bootstrap (부트스트랩)에서 제공하는 기능을 이용하여 Button 을 사용하는 경우,
아래와 같이 사용하게 된다.
이때, 버튼에 추가적인 기능을 넣을 수 있는데 대표적인 것이 GlyphsIcon (상형아이콘) 이다
다음과 같이 다양한 아이콘이 제공되는데, 이것을 버튼에도 넣을 수 있다.
아래와 같이 사용하면 된다.
1
2
3
4
5
6
7
|
<button type="button" class="btn btn-default" aria-label="Left Align">
<span class="glyphicon glyphicon-align-left" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-star" aria-hidden="true"></span>
Star
</button>
|
cs |
버튼의 크기는 다음과 같이 조절할 수 있다
1
2
3
4
5
|
<button class="btn btn-primary btn-lg">Large</button>
<button class="btn btn-primary">Default</button>
<button class="btn btn-primary btn-md">Medium</button>
<button class="btn btn-primary btn-sm">Small</button>
<button class="btn btn-primary btn-xs">XSmall</button>
|
cs |
HTML DOM 엘리먼트 생성 및 삭제 createElement() removeChild() (0) | 2016.08.19 |
---|---|
zIndex 와 z-index 의 차이? javascript 와 CSS 의 차이 !!! (0) | 2016.08.02 |
HTML DOM IFrame Object 살펴보기, contentDocument, contentWindow (0) | 2016.08.02 |
HTML5 드레그&드랍 draggable, ondragstart, ondrop, ondragover (0) | 2016.08.01 |
Bootstarp Framework (부트스트랩 프레임워크) 살펴보기 (0) | 2016.07.31 |
댓글 영역