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.6k
資訊實務應用讀書會 第六堂課:Basic CSS
Maplewing
October 22, 2013
Tweet
Share
More Decks by Maplewing
See All by Maplewing
師大資工系ACM-ICPC讀書會:肆、鏈結串列與二元樹
sinmaplewing
0
120
資訊實務應用讀書會 第七堂課:jQuery
sinmaplewing
0
2k
師大資工系ACM-ICPC讀書會:參、堆疊與佇列
sinmaplewing
0
200
師大資工系ACM-ICPC讀書會:貳、排序搜尋與數學基礎
sinmaplewing
0
170
師大資工系ACM-ICPC讀書會:壹、字串處理與大數運算
sinmaplewing
0
130
師大資工系ACM-ICPC讀書會:零、比賽介紹、解題系統介紹
sinmaplewing
0
190
資訊實務應用讀書會 第四堂課(支線):Linux
sinmaplewing
0
1.8k
資訊實務應用讀書會 第一堂課:Basic HTML
sinmaplewing
1
2k
Other Decks in Programming
See All in Programming
XP, Testing and ninja testing
m_seki
3
220
『自分のデータだけ見せたい!』を叶える──Laravel × Casbin で複雑権限をスッキリ解きほぐす 25 分
akitotsukahara
1
600
20250628_非エンジニアがバイブコーディングしてみた
ponponmikankan
0
600
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
5
1.5k
なぜ適用するか、移行して理解するClean Architecture 〜構造を超えて設計を継承する〜 / Why Apply, Migrate and Understand Clean Architecture - Inherit Design Beyond Structure
seike460
PRO
1
720
イベントストーミング図からコードへの変換手順 / Procedure for Converting Event Storming Diagrams to Code
nrslib
1
570
Goで作る、開発・CI環境
sin392
0
190
CursorはMCPを使った方が良いぞ
taigakono
1
210
ruby.wasmで多人数リアルタイム通信ゲームを作ろう
lnit
2
330
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
20
3.8k
deno-redisの紹介とJSRパッケージの運用について (toranoana.deno #21)
uki00a
0
170
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
370
Featured
See All Featured
Navigating Team Friction
lara
187
15k
A Tale of Four Properties
chriscoyier
160
23k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Building Applications with DynamoDB
mza
95
6.5k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.8k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
124
52k
Why Our Code Smells
bkeepers
PRO
337
57k
Building an army of robots
kneath
306
45k
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就再來談吧!