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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
RobertoEsteban
October 28, 2013
Technology
62
0
Share
Salvattore
Lightning Talks Dia Sábado 26 de Octubre en StartechConf 2013.
RobertoEsteban
October 28, 2013
More Decks by RobertoEsteban
See All by RobertoEsteban
@punchgirls
robertoesteban
0
100
BrainTask
robertoesteban
0
49
Como fui contratado dos veces por Google
robertoesteban
0
150
How AdkintunMobile
robertoesteban
0
120
Pero si en mi computador funciona!!!
robertoesteban
0
150
Estrategias de Contenidos
robertoesteban
0
90
Secretos para hablar en Publico
robertoesteban
0
160
¿Por qué aprender a desarrollar aplicaciones móviles ?
robertoesteban
0
110
Los grandes artistas copian, los genios roban
robertoesteban
0
230
Other Decks in Technology
See All in Technology
20260428_Product Management Summit_tadokoroyoshiro
tadokoro_yoshiro
10
13k
The Journey of Box Building
tagomoris
4
3.3k
Do Vibe Coding ao LLM em Produção para Busca Agêntica - TDC 2026 - Summit IA - São Paulo
jpbonson
3
150
Microsoft 365 / Microsoft 365 Copilot : 自分の状態を確認する「ラベル」について
taichinakamura
0
340
Claude Code を安全に使おう勉強会 / Claude Code Security Basics
masahirokawahara
12
36k
ぼくがかんがえたさいきょうのあうとぷっと
yama3133
0
200
Do Ruby::Box dream of Modular Monolith?
joker1007
1
350
「誰一人取り残されない」 AIエージェント時代のプロダクト設計思想 Product Management Summit 2026
mizushimac
1
1.4k
Hacobu Tech Deck
hacobu
PRO
0
120
ServiceNow Knowledge 26 の歩き方
manarobot
0
140
Shipping AI Agents — Lessons from Production
vvatanabe
0
280
Rapid Start: Faster Internet Connections, with Ruby's Help
kazuho
2
750
Featured
See All Featured
Digital Ethics as a Driver of Design Innovation
axbom
PRO
1
270
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
The agentic SEO stack - context over prompts
schlessera
0
750
Building the Perfect Custom Keyboard
takai
2
730
The Cult of Friendly URLs
andyhume
79
6.8k
Groundhog Day: Seeking Process in Gaming for Health
codingconduct
0
150
Raft: Consensus for Rubyists
vanstee
141
7.4k
Designing Experiences People Love
moore
143
24k
Introduction to Domain-Driven Design and Collaborative software design
baasie
1
740
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.9k
Java REST API Framework Comparison - PWX 2021
mraible
34
9.3k
Impact Scores and Hybrid Strategies: The future of link building
tamaranovitovic
0
260
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