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
Joken Web design講習会 #2 CSS
Search
ちげ
December 11, 2018
Programming
0
160
Joken Web design講習会 #2 CSS
奈良高専情報処理研究会で開催した公開講座、第二回のスライド資料
https://hackmd.io/s/rkrO00t2Q
ちげ
December 11, 2018
Tweet
Share
More Decks by ちげ
See All by ちげ
今更聞けないデザイン思考 - 高専キャリア2024冬 / imasara-design-thinking
chige
7
1.2k
Stol - UNISYS hackathon
chige
0
340
BranCo! 2021 4位 チーム「研究の虫」発表スライド / branco-2021-slide
chige
2
2.1k
Finde neue
chige
0
220
Nuxtはいいぞ2 / nuxtjs is good 2
chige
0
270
よさみなロゴの選び方 / yosami-na-logo-no-erabikata
chige
2
660
夢LT発表スライド / yume-LT
chige
0
340
フォント入門 / intro-font
chige
3
1k
Mille Feuille app - HackU2019Osaka | team:forkbomb
chige
1
330
Other Decks in Programming
See All in Programming
コード書くの好きな人向けAIコーディング活用tips #orestudy
77web
3
320
技術懸念に立ち向かい 法改正を穏便に乗り切った話
pop_cashew
0
1.5k
Rails産でないDBを Railsに引っ越すHACK - Omotesando.rb #110
lnit
1
160
Practical Tips and Tricks for Working with Compose Multiplatform Previews (mDevCamp 2025)
stewemetal
0
130
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
40
26k
データの民主化を支える、透明性のあるデータ利活用への挑戦 2025-06-25 Database Engineering Meetup#7
y_ken
0
200
Claude Codeの使い方
ttnyt8701
1
120
UPDATEがシステムを複雑にする? イミュータブルデータモデルのすすめ
shimomura
1
560
2度もゼロから書き直して、やっとブラウザでぬるぬる動くAIに辿り着いた話
tomoino
0
160
AWS CDKの推しポイント 〜CloudFormationと比較してみた〜
akihisaikeda
3
280
Development of an App for Intuitive AI Learning - Blockly Summit 2025
teba_eleven
0
120
Datadog RUM 本番導入までの道
shinter61
1
300
Featured
See All Featured
Statistics for Hackers
jakevdp
799
220k
GraphQLとの向き合い方2022年版
quramy
46
14k
Why Our Code Smells
bkeepers
PRO
337
57k
We Have a Design System, Now What?
morganepeng
52
7.6k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
How STYLIGHT went responsive
nonsquared
100
5.6k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
How to train your dragon (web standard)
notwaldorf
92
6.1k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
20
1.3k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
Site-Speed That Sticks
csswizardry
10
640
Transcript
1 / 23
2 / 23
<img src=”logo.png” alt=”ロゴ”> <h1> Joken公式サイト </h1> 3 / 23
</html> </body> </head> ⾢ ⾢ <!DOCTYPE html> 4 / 23
</body> </header> </section> </section> </section> </footer> </main> </head> <nav> <menu>
<article> 5 / 23
6 / 23
7 / 23 IBDLNEJPTSLS0U2
8 / 23
<p style=”color:red;”> 赤い文字 </p> 9 / 23
<style> .red-text { color: red; } </style> ~~~~~ <p class=”red-text”>
赤い文字 </p> 10 / 23
<link rel="stylesheet” href="./sample.css"> ~~~~ <p class=”red-text”> 赤い文字 </p> 11 /
23 .red-text { color: red; }
.red-text { color: red; } セレクタ { プロパティ: 値; }
12 / 23
13 / 23 ʮ$44ϑΝΠϧͷࢦఆͷํʯΛνΣ οΫ ⾢͜͜ΛΫϦοΫͯ͠ɺ
14 / 23 h1 {/*IλάͷཁૉʹదԠ*/} p {/*QλάͷཁૉʹదԠ*/} .red-text {/*͜ͷΫϥε͕͍͍ͯΔཁૉʹదԠ*/} p.red-text
{/*Qλά͜ͷΫϥε͕͍͍ͯΔཁૉ*/} h1.red-text {/*Iλά͜ͷΫϥε͕͍͍ͯΔཁૉ*/}
15 / 23 ͳͲͳͲ p .red-text { /*͜ͷΫϥε͕͘ཁૉ͕ɺ Qλάͷதʹ͋Δ߹ʹదԠ*/ /*
ʢQλάΛʹ࣋ͭʣ */ } .red-text,.blue-text { ͲͪΒͷΫϥεͷཁૉʹదԠ }
p.sample-propaty { font-weight: bold; font-size: 30px; text-decoration-line: underline; border: 2px
double red; cursor: pointer; } 16 / 23
width: 100px; height: 100px; margin: 12px; padding: 8px; background: red;
color: #fff; 16 / 20 100px 100px あいうえお かきくけこ さしすせ そ。 17 / 23
width: 100px; height: 100px; margin: 12px; padding: 8px; background: red;
color: #fff; 16 / 20 12px 8px あいうえお かきくけこ さしすせ そ。 18 / 23
19 / 23
20 / 23
20 / 23
ίί⾣ 21 / 23
22 / 23
23 / 23 ίί⾣