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
1.8k
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
資訊實務應用讀書會 第六堂課:Basic CSS
Maplewing
October 22, 2013
More Decks by Maplewing
See All by Maplewing
師大資工系ACM-ICPC讀書會:肆、鏈結串列與二元樹
sinmaplewing
0
160
資訊實務應用讀書會 第七堂課:jQuery
sinmaplewing
0
2.1k
師大資工系ACM-ICPC讀書會:參、堆疊與佇列
sinmaplewing
0
250
師大資工系ACM-ICPC讀書會:貳、排序搜尋與數學基礎
sinmaplewing
0
210
師大資工系ACM-ICPC讀書會:壹、字串處理與大數運算
sinmaplewing
0
150
師大資工系ACM-ICPC讀書會:零、比賽介紹、解題系統介紹
sinmaplewing
0
240
資訊實務應用讀書會 第四堂課(支線):Linux
sinmaplewing
0
1.9k
資訊實務應用讀書會 第一堂課:Basic HTML
sinmaplewing
1
2.2k
Other Decks in Programming
See All in Programming
AI時代のPHPer生存戦略 ~「言語、もうなんでもよくない?」に本気で向き合う~
vivion
0
220
Android CLI
fornewid
0
200
ビデオ通話が繋がる0.2秒で何が起きているのか
supurazako
2
170
PostgreSQL 18で考えるUUID主キー
kazuhiro1982
0
450
AI時代に設計が 最大の生産性レバーになる 意図駆動開発とデータを消さない設計|Don't Delete Your Data or Your Intent — Design as the Deepest Lever in the AI Era
tomohisa
1
480
php-fpmのプロセスが枯渇した日-調査・対処・そして本当にやるべきだったこと-
shibuchaaaan
0
200
Welcome to the "Parametricity" 🏙️ − Generic だけど Specific な世界 −
guvalif
PRO
1
200
生成AIで帳票OCRが「簡単に」作れる時代になった?
kon_shou
0
310
TSX の <Hoge<Fuga>> という構文に驚いた話 / tsx-type-argument-syntax
kanaru0928
0
200
変わらないものが、変わるものを決める — 意図駆動開発 × イベントソーシング × イミュータブル | What Doesn't Change Decides What Can — IDD × Event Sourcing × Immutability
tomohisa
0
1k
作るコストが小さくなった時代 幸せに働くために改めて考えたいこと 〜エンジニアとして価値を出し続けるために注視している二分野〜
yuppeeng
0
180
霧の中の代数的エフェクト
funnyycat
1
450
Featured
See All Featured
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
650
HTML-Aware ERB: The Path to Reactive Rendering @ RubyCon 2026, Rimini, Italy
marcoroth
3
390
New Earth Scene 8
popppiees
3
2.4k
Heart Work Chapter 1 - Part 1
lfama
PRO
8
36k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.7k
How to make the Groovebox
asonas
2
2.3k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.6k
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
1.1k
Groundhog Day: Seeking Process in Gaming for Health
codingconduct
0
270
Tell your own story through comics
letsgokoyo
1
1k
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
560
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.5k
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就再來談吧!