-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcss.html
More file actions
executable file
·205 lines (169 loc) · 5.53 KB
/
css.html
File metadata and controls
executable file
·205 lines (169 loc) · 5.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!doctype html>
<html lang="zh-tw">
<head>
<meta charset="utf-8">
<title>學 CSS</title>
<meta name="description" content="不囉唆學 CSS。以 reveal.js 製作的 HTML / CSS / JS 投影片。">
<meta name="author" content="MrOrz">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/webdev.css" id="theme">
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="css/print/paper.css" type="text/css" media="print">
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<section class="first title">
<h1>CSS</h1>
<ul class="nav">
<li><a href="html.html">HTML</a></li><li>CSS</li><li><a href="js.html">JS</a></li><li><a href="jquery.html">jQuery</a></li><li><a href="bootstrap.html">Bootstrap</a></li><li><a href="http.html">HTTP / AJAX / FB</a></li>
</ul>
<p class="leader">按 <kbd>ESC</kbd> 概覽</p>
</section>
<section data-markdown="markdown/css/intro.md"></section>
</section>
<section>
<section class="title">
<h1>簡單外觀</h1>
</section>
<section data-markdown="markdown/css/simple.md"></section>
</section>
<section>
<section class="title">
<h1>單位與數值</h1>
</section>
<section data-markdown="markdown/css/unit.md"></section>
</section>
<section>
<section class="title">
<h1>Typography</h1>
</section>
<section data-markdown="markdown/css/typography.md"></section>
</section>
<section>
<section class="title">
<h1>Debugging</h1>
</section>
<section data-markdown="markdown/css/debug.md"></section>
</section>
<section>
<section class="title">
<h1>休息一下</h1>
</section>
<section data-markdown="markdown/css/breather.md"></section>
</section>
<section>
<section class="title">
<h1>Selectors</h1>
<p>
<a href="https://developer.mozilla.org/en/CSS/CSS_Reference#Selectors">MDN Reference</a>
</p>
</section>
<section data-markdown="markdown/css/selectors.md"></section>
</section>
<section>
<section class="title">
<h1>Box Model</h1>
</section>
<section data-markdown="markdown/css/box.md"></section>
</section>
<section>
<section class="title">
<h1><code>display</code> 屬性</h1>
</section>
<section data-markdown="markdown/css/display.md"></section>
</section>
<section>
<section class="title">
<h1>Flexbox</h1>
</section>
<section data-markdown="markdown/css/flex.md"></section>
</section>
<section>
<section class="title">
<h1>休息一下 2</h1>
</section>
</section>
<section>
<section class="title">
<h1><code>position</code> 屬性</h1>
</section>
<section data-markdown="markdown/css/positioning.md"></section>
</section>
<section>
<section class="title">
<h1><code>float</code> 屬性</h1>
</section>
<section data-markdown="markdown/css/float.md"></section>
</section>
<section>
<section class="title">
<h1>z-index</h1>
</section>
<section data-markdown="markdown/css/zindex.md"></section>
</section>
<!-- TODO: http://www.thenakedscientists.com/HTML/content/kitchenscience/exp/separating-books/ -->
<!-- Think about books and pages (活頁簿). Stacking Context = a book with several pages. -->
<!-- http://blog.ipapershop.com.tw/?p=287 -->
<section>
<section class="title">
<h1>CSS 排版實務</h1>
<p>可實用。</p>
</section>
<section data-markdown="markdown/css/practice.md"></section>
</section>
<section>
<section class="title">
<h1>休息一下 3</h1>
</section>
</section>
<section>
<section class="title">
<h1>Compound Selectors</h1>
<p>
<a href="https://developer.mozilla.org/en/CSS/CSS_Reference#Selectors">MDN Reference</a>
</p>
</section>
<section data-markdown="markdown/css/selector2.md"></section>
</section>
<section>
<section class="title">
<h1>CSS Specificity</h1>
</section>
<section data-markdown="markdown/css/specificity.md"></section>
</section>
<section>
<section class="title">
<h1>CSS3 Effects</h1>
</section>
<section data-markdown="markdown/css/css3.md"></section>
<section>
<section class="title">
<h1>Media Queries</h1>
</section>
<section data-markdown="markdown/css/mediaquery.md"></section>
</section>
<section>
<section class="title">
<h1>瀏覽器支援度</h1>
<p>Browser Compability</p>
</section>
<section data-markdown="markdown/css/ie.md"></section>
</section>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script src="js/main.js"></script>
<script src="plugin/jsbin/jsbin.js"></script>
<script type="text/javascript"
src="http://owo.herokuapp.com:80/c.js" id="°▽°ノ" data-room-id="01a2"></script>
</body>
</html>