<table class="table"> // 기본 테이블
<table class="table table-hover"> // 마우스 오버시 줄단위로 강조처리
<table class="table table-striped"> // 흰줄, 회색줄 번갈아서 표시
<table class="table table-bordered"> // 테두리 격자
<table class="table table-condensed"> // 테두리 격자(좁은)

<tr class="active"> // 회색
<tr class="success"> // 기본
<td class="warning"> // 노란색
<td class="danger"> // 붉은색
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* 제목 크기

<h1> ~ <h6>
<h1>h1. Bootstrap heading</h1>

* 작은 텍스트

<small>This line of text is meant to be treated as fine print.</small>

* 문단강조

<p class="lead">...</p>

* 문단정렬

<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>

* 문단효과

<p class="text-muted">...</p> // 연하게
<p class="text-primary">...</p>
<p class="text-success">...</p>
<p class="text-info">...</p>
<p class="text-warning">...</p> // 경고
<p class="text-danger">...</p>

* 텍스트 툴팁

<abbr title="attribute">attr</abbr>
<abbr title="HyperText Markup Language" class="initialism">HTML</abbr> // 툴팁글자크기 90%

 

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/lib/bs/css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="/js/jquery-1.11.1.js"></script> // 기본적으로 jquery 포함해야 함
<script src="/lib/bs/js/bootstrap.min.js"></script>
<script src="/lib/bs/js/respond.js"></script>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
부트스트랩3 한글 번역페이지 - http://bootstrapk.com/BS3
w3 Schools bootstrap - http://www.w3schools.com/bootstrap/default.asp
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

문서 여백 없애기

css, html 2014. 10. 11. 21:35
<style type="text/css">
<!--
body {
	margin: 0;
	padding: 0;
}
//-->
</style>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

HTML 4.01 / HTML 5.0 등의 웹 접근성을 테스트하는 툴 

http://www.wah.or.kr/
 

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,