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
140
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
6
980
Stol - UNISYS hackathon
chige
0
320
BranCo! 2021 4位 チーム「研究の虫」発表スライド / branco-2021-slide
chige
2
2k
Finde neue
chige
0
200
Nuxtはいいぞ2 / nuxtjs is good 2
chige
0
250
よさみなロゴの選び方 / yosami-na-logo-no-erabikata
chige
2
640
夢LT発表スライド / yume-LT
chige
0
320
フォント入門 / intro-font
chige
3
980
Mille Feuille app - HackU2019Osaka | team:forkbomb
chige
1
320
Other Decks in Programming
See All in Programming
S3静的ホスティング+Next.js静的エクスポート で格安webアプリ構築
iharuoru
0
190
Scala 3 で GLSL のための c-like-for を実装してみた
exoego
1
180
CTFのWebにおける⾼難易度問題について
hamayanhamayan
1
950
Devin , 正しい付き合い方と使い方 / Living and Working with Devin
yukinagae
1
510
爆速スッキリ! Rspack 移行の成果と道のり - Muddy Web #11
dora1998
0
140
Node.js, Deno, Bun 最新動向とその所感について
yosuke_furukawa
PRO
6
3k
Preact、HooksとSignalsの両立 / Preact: Harmonizing Hooks and Signals
ssssota
1
560
2025/3/18 サービスの成長で生じる幅広いパフォーマンスの問題を、 AIで手軽に解決する
shirahama_x
0
160
データベースエンジニアの仕事を楽にする。PgAssistantの紹介
nnaka2992
9
4.1k
ローコードサービスの進化のためのモノレポ移行
taro28
1
330
PHPによる"非"構造化プログラミング入門 -本当に熱いスパゲティコードを求めて- #phperkaigi
o0h
PRO
0
1.1k
Go1.24 go vetとtestsアナライザ
kuro_kurorrr
2
380
Featured
See All Featured
Build The Right Thing And Hit Your Dates
maggiecrowley
34
2.6k
Making the Leap to Tech Lead
cromwellryan
133
9.2k
Being A Developer After 40
akosma
90
590k
Visualization
eitanlees
146
15k
The Language of Interfaces
destraynor
156
24k
GraphQLの誤解/rethinking-graphql
sonatard
70
10k
How to Ace a Technical Interview
jacobian
276
23k
Code Reviewing Like a Champion
maltzj
521
39k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
15
1.1k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
27
1.6k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.8k
Designing Experiences People Love
moore
140
23k
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 ίί⾣