Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
資訊實務應用讀書會 第六堂課:Basic CSS
Search
Maplewing
October 22, 2013
Programming
0
1.7k
資訊實務應用讀書會 第六堂課:Basic CSS
Maplewing
October 22, 2013
Tweet
Share
More Decks by Maplewing
See All by Maplewing
師大資工系ACM-ICPC讀書會:肆、鏈結串列與二元樹
sinmaplewing
0
130
資訊實務應用讀書會 第七堂課:jQuery
sinmaplewing
0
2k
師大資工系ACM-ICPC讀書會:參、堆疊與佇列
sinmaplewing
0
210
師大資工系ACM-ICPC讀書會:貳、排序搜尋與數學基礎
sinmaplewing
0
180
師大資工系ACM-ICPC讀書會:壹、字串處理與大數運算
sinmaplewing
0
130
師大資工系ACM-ICPC讀書會:零、比賽介紹、解題系統介紹
sinmaplewing
0
200
資訊實務應用讀書會 第四堂課(支線):Linux
sinmaplewing
0
1.8k
資訊實務應用讀書會 第一堂課:Basic HTML
sinmaplewing
1
2.1k
Other Decks in Programming
See All in Programming
Zendeskのチケットを Amazon Bedrockで 解析した
ryokosuge
3
320
そのAPI、誰のため? Androidライブラリ設計における利用者目線の実践テクニック
mkeeda
2
1.8k
個人軟體時代
ethanhuang13
0
330
Design Foundational Data Engineering Observability
sucitw
3
200
さようなら Date。 ようこそTemporal! 3年間先行利用して得られた知見の共有
8beeeaaat
3
1.5k
GitHubとGitLabとAWS CodePipelineでCI/CDを組み比べてみた
satoshi256kbyte
4
250
ProxyによるWindow間RPC機構の構築
syumai
3
1.2k
デザイナーが Androidエンジニアに 挑戦してみた
874wokiite
0
550
Rancher と Terraform
fufuhu
2
550
ユーザーも開発者も悩ませない TV アプリ開発 ~Compose の内部実装から学ぶフォーカス制御~
taked137
0
190
Android端末で実現するオンデバイスLLM 2025
masayukisuda
1
170
旅行プランAIエージェント開発の裏側
ippo012
2
930
Featured
See All Featured
GitHub's CSS Performance
jonrohan
1032
460k
How to train your dragon (web standard)
notwaldorf
96
6.2k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.7k
Imperfection Machines: The Place of Print at Facebook
scottboms
268
13k
Bash Introduction
62gerente
615
210k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.5k
Embracing the Ebb and Flow
colly
87
4.8k
Side Projects
sachag
455
43k
4 Signs Your Business is Dying
shpigford
184
22k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
61k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
30
9.7k
Context Engineering - Making Every Token Count
addyosmani
3
58
Transcript
師大資工系☆灆洢騎士
None
• Cascading Style Sheets • 層疊樣式表 • 透過CSS,可以更改網頁的樣式。
None
• 行內套用 • 嵌入套用 • 外部連結套用
None
None
None
None
• 型類(Type)選擇器 • Class選擇器 • ID選擇器
None
None
None
• 同一份HTML文件中 • 同樣的Class名稱可用在多個標籤上 • 每個ID名稱只能用在一個標籤上 • 選擇器的前綴符號不同 • Class前用
[ . ] • ID前用 [ # ]
None
None
None
•<span>:inline元素 • 可卡在一段文字中間,並不擠掉左右區塊。 • Ex. <strong>、<em>、<b>、<i> •<div>:block元素 • 會占用一整行的空間。 •
Ex. <h1>、<p>
None
None
None
None
None
None
None
None
None
None
•可使用的值:left、center、right
text-align: left; 靠左對齊 text-align: center; 置中對齊 text-align: right; 靠右對齊
None
text-decoration: underline; 文字底下加線 text-decoration: overline; 文字上面加線 text-decoration: line-through; 文字中間加線 text-decoration:
none; 沒有線
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
•請使用前面幾次作業做出來的網頁。 •試著套用前面每一節的其中一種功能來使用。
•CSS語法教學: • http://css.1keydata.com/tw/ •W3School • http://www.w3schools.com/
•如果有機會講CSS Layout就再來談吧!