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
Salvattore
Search
Rolando Murillo
October 26, 2013
Design
0
59
Salvattore
Presented today at Startech by Giorgio Leveroni.
Rolando Murillo
October 26, 2013
Tweet
Share
Other Decks in Design
See All in Design
今日から意識できるアクセシビリティ
fumiko
0
240
実践ゼロから作らないデザインシステム SaaS × デザインシステム × プロダクトデザイン / Efficient Design System for SaaS—no need to start from scratch.
kaminashi
2
1.7k
株式会社ログラス - 会社説明資料【デザイナー】/ Loglass Designer
loglass2019
1
670
株式会社バクタム 会社説明資料
bactum
0
240
ビジネスアナリシスはビジネス”分析”じゃないよ!~システム人材が価値を生むための基盤スキルとしてのビジネスアナリシス~
bpstudy
0
530
Tools for Design Engineers other than LLM in the LLM era
takanorip
1
230
マンガで分かるサービスデザインガイドライン
senryakuka
1
890
Generating Momentum | Yasuhiro Yokota
yasuhiroyokota
1
370
harutaka Vision Deck
zenkigenforrecruit
0
140
AI動画生成ガチャ紹介
piyo7
1
110
An Early Spring | Storyboard | Scenes 1-18
giofortuna_story
0
270
真・altはつけるだけじゃなくて -alt属性の考察 2025年版-
securecat
5
1.6k
Featured
See All Featured
A better future with KSS
kneath
239
17k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.8k
Done Done
chrislema
184
16k
Rails Girls Zürich Keynote
gr2m
94
14k
Documentation Writing (for coders)
carmenintech
72
4.9k
Navigating Team Friction
lara
187
15k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
Docker and Python
trallard
44
3.5k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
17
950
For a Future-Friendly Web
brad_frost
179
9.8k
Transcript
None
THE PROBLEM
THE “SOLUTION”
THE PROBLEM WITH THE “SOLUTION” MADNESS IMAGELOAD? JS-DEFINED LAYOUT
None
EASY SETUP, CSS-ORIENTED <section class=“test”> <div class=“item”>Item 1</div> <div class=“item”>Item
2</div> <div class=“item”>Item 3</div> … <div class=“item”>Item 20</div> </section>
EASY SETUP, CSS-ORIENTED <div class=“item”> Item 1 </div> <div class=“item”>
Item 2 </div> <div class=“item”> Item 3 </div> <div class=“item”> Item 4 </div> <div class=“item”> Item 5 </div> <div class=“item”> Item 6 </div>
EASY SETUP, CSS-ORIENTED <section class=“test” data-columns> <div class=“item”>Item 1</div> <div
class=“item”>Item 2</div> <div class=“item”>Item 3</div> … <div class=“item”>Item 20</div> </section>
.test[data-columns]::before { content: ‘3 .column.size-1of3’ } EASY SETUP, CSS-ORIENTED .column
{ float: left; } .size-1of3 { width: 33.333%; }
<section class=“test” data-columns> <div class=“column size-1of3”> <div class=“item”>Item 1</div> <div
class=“item”>Item 4</div> … </div> <div class=“column size-1of3”> <div class=“item”>Item 2</div> <div class=“item”>Item 5</div> … </div> <div class=“column size-1of3”> <div class=“item”>Item 3</div> <div class=“item”>Item 6</div> … </div> </section> EASY SETUP, CSS-ORIENTED
PROBLEM SOLVED, THE RIGHT WAY <div class=“item”> Item 1 </div>
<div class=“item”> Item 2 </div> <div class=“item”> Item 3 </div> <div class=“item”> Item 4 </div> <div class=“item”> Item 5 </div> <div class=“item”> Item 6 </div>
@media screen and (min-width: 481px) and .test[data-columns]::before { content: ‘2
.column.size-1of2’ } } @media screen and (min-width: 601px) and .test[data-columns]::before { content: ‘3 .column.size-1of3’ } } MEDIA QUERIES COMPATIBLE
IN USE lamula.pe tadpoles.in
GIVE IT A TRY salvattore.com by @rnmp and @ppold