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
RobertoEsteban
October 28, 2013
Technology
0
59
Salvattore
Lightning Talks Dia Sábado 26 de Octubre en StartechConf 2013.
RobertoEsteban
October 28, 2013
Tweet
Share
More Decks by RobertoEsteban
See All by RobertoEsteban
@punchgirls
robertoesteban
0
96
BrainTask
robertoesteban
0
47
Como fui contratado dos veces por Google
robertoesteban
0
150
How AdkintunMobile
robertoesteban
0
110
Pero si en mi computador funciona!!!
robertoesteban
0
140
Estrategias de Contenidos
robertoesteban
0
87
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
210
Other Decks in Technology
See All in Technology
もう外には出ない。より快適なフルリモート環境を目指して
mottyzzz
13
11k
NLPコロキウム20251022_超効率化への挑戦: LLM 1bit量子化のロードマップ
yumaichikawa
3
550
QA業務を変える(!?)AIを併用した不具合分析の実践
ma2ri
0
160
激動の時代を爆速リチーミングで乗り越えろ
sansantech
PRO
1
150
AIプロダクトのプロンプト実践テクニック / Practical Techniques for AI Product Prompts
saka2jp
0
120
re:Inventに行くまでにやっておきたいこと
nagisa53
0
670
serverless team topology
_kensh
3
240
GraphRAG グラフDBを使ったLLM生成(自作漫画DBを用いた具体例を用いて)
seaturt1e
1
160
Kubernetes self-healing of your workload
hwchiu
0
600
可観測性は開発環境から、開発環境にもオブザーバビリティ導入のススメ
layerx
PRO
4
1.7k
OTEPsで知るOpenTelemetryの未来 / Observability Conference Tokyo 2025
arthur1
0
310
AI時代の開発を加速する組織づくり - ブログでは書けなかったリアル
hiro8ma
2
340
Featured
See All Featured
Become a Pro
speakerdeck
PRO
29
5.6k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.5k
Designing for Performance
lara
610
69k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
640
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.7k
Large-scale JavaScript Application Architecture
addyosmani
514
110k
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
Navigating Team Friction
lara
190
15k
GraphQLとの向き合い方2022年版
quramy
49
14k
YesSQL, Process and Tooling at Scale
rocio
173
15k
Documentation Writing (for coders)
carmenintech
75
5.1k
A Tale of Four Properties
chriscoyier
161
23k
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