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.5k
資訊實務應用讀書會 第六堂課:Basic CSS
Maplewing
October 22, 2013
Tweet
Share
More Decks by Maplewing
See All by Maplewing
師大資工系ACM-ICPC讀書會:肆、鏈結串列與二元樹
sinmaplewing
0
100
資訊實務應用讀書會 第七堂課:jQuery
sinmaplewing
0
1.9k
師大資工系ACM-ICPC讀書會:參、堆疊與佇列
sinmaplewing
0
170
師大資工系ACM-ICPC讀書會:貳、排序搜尋與數學基礎
sinmaplewing
0
150
師大資工系ACM-ICPC讀書會:壹、字串處理與大數運算
sinmaplewing
0
120
師大資工系ACM-ICPC讀書會:零、比賽介紹、解題系統介紹
sinmaplewing
0
170
資訊實務應用讀書會 第四堂課(支線):Linux
sinmaplewing
0
1.7k
資訊實務應用讀書會 第一堂課:Basic HTML
sinmaplewing
1
1.9k
Other Decks in Programming
See All in Programming
Generative AI Use Cases JP (略称:GenU)奮闘記
hideg
1
270
よくできたテンプレート言語として TypeScript + JSX を利用する試み / Using TypeScript + JSX outside of Web Frontend #TSKaigiKansai
izumin5210
5
1.6k
CPython 인터프리터 구조 파헤치기 - PyCon Korea 24
kennethanceyer
0
250
CSC509 Lecture 12
javiergs
PRO
0
150
Identifying User Idenity
moro
6
9.9k
ECS Service Connectのこれまでのアップデートと今後のRoadmapを見てみる
tkikuc
2
250
Nurturing OpenJDK distribution: Eclipse Temurin Success History and plan
ivargrimstad
0
750
タクシーアプリ『GO』のリアルタイムデータ分析基盤における機械学習サービスの活用
mot_techtalk
4
1.1k
リアーキテクチャxDDD 1年間の取り組みと進化
hsawaji
1
210
とにかくAWS GameDay!AWSは世界の共通言語! / Anyway, AWS GameDay! AWS is the world's lingua franca!
seike460
PRO
1
830
Amazon Qを使ってIaCを触ろう!
maruto
0
390
詳細解説! ArrayListの仕組みと実装
yujisoftware
0
570
Featured
See All Featured
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
28
2k
Testing 201, or: Great Expectations
jmmastey
38
7.1k
A Modern Web Designer's Workflow
chriscoyier
693
190k
The Cult of Friendly URLs
andyhume
78
6k
The Language of Interfaces
destraynor
154
24k
GraphQLの誤解/rethinking-graphql
sonatard
67
10k
We Have a Design System, Now What?
morganepeng
50
7.2k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.2k
It's Worth the Effort
3n
183
27k
Thoughts on Productivity
jonyablonski
67
4.3k
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就再來談吧!