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
220
師大資工系ACM-ICPC讀書會:貳、排序搜尋與數學基礎
sinmaplewing
0
180
師大資工系ACM-ICPC讀書會:壹、字串處理與大數運算
sinmaplewing
0
130
師大資工系ACM-ICPC讀書會:零、比賽介紹、解題系統介紹
sinmaplewing
0
210
資訊實務應用讀書會 第四堂課(支線):Linux
sinmaplewing
0
1.8k
資訊實務應用讀書會 第一堂課:Basic HTML
sinmaplewing
1
2.1k
Other Decks in Programming
See All in Programming
JJUG CCC 2025 Fall: Virtual Thread Deep Dive
ternbusty
3
430
知られているようで知られていない JavaScriptの仕様 4選
syumai
0
610
What’s Fair is FAIR: A Decentralised Future for WordPress Distribution
rmccue
0
180
予防に勝る防御なし(2025年版) - 堅牢なコードを導く様々な設計のヒント / Growing Reliable Code PHP Conference Fukuoka 2025
twada
PRO
39
12k
Honoを技術選定したAI要件定義プラットフォームAcsimでの意思決定
codenote
0
240
無秩序からの脱却 / Emergence from chaos
nrslib
1
1.2k
MCPサーバー「モディフィウス」で変更容易性の向上をスケールする / modifius
minodriven
8
1.6k
仕様がそのままテストになる!Javaで始める振る舞い駆動開発
ohmori_yusuke
8
4.4k
Stay Hacker 〜九州で生まれ、Perlに出会い、コミュニティで育つ〜
pyama86
2
1.6k
Swift Concurrency 年表クイズ
omochi
3
230
AI 時代だからこそ抑えたい「価値のある」PHP ユニットテストを書く技術 #phpconfuk / phpcon-fukuoka-2025
shogogg
1
530
Promise.tryで実現する新しいエラーハンドリング New error handling with Promise try
bicstone
3
460
Featured
See All Featured
Writing Fast Ruby
sferik
630
62k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
Java REST API Framework Comparison - PWX 2021
mraible
34
9k
Gamification - CAS2011
davidbonilla
81
5.5k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
118
20k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.3k
Keith and Marios Guide to Fast Websites
keithpitt
413
23k
Building an army of robots
kneath
306
46k
How GitHub (no longer) Works
holman
315
140k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
670
[RailsConf 2023] Rails as a piece of cake
palkan
57
6.1k
How Fast Is Fast Enough? [PerfNow 2025]
tammyeverts
3
320
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就再來談吧!