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
Responsive Design - Polopoly GeekNight Blixttal
Search
Henrik Ekelöf
November 23, 2011
Programming
2
410
Responsive Design - Polopoly GeekNight Blixttal
Henrik Ekelöf
November 23, 2011
Tweet
Share
Other Decks in Programming
See All in Programming
Server Side Kotlin Meetup vol.16: 内部動作を理解して ハイパフォーマンスなサーバサイド Kotlin アプリケーションを書こう
ternbusty
3
180
CSC305 Lecture 06
javiergs
PRO
0
230
チームの境界をブチ抜いていけ
tokai235
0
180
Six and a half ridiculous things to do with Quarkus
hollycummins
0
170
Building, Deploying, and Monitoring Ruby Web Applications with Falcon (Kaigi on Rails 2025)
ioquatix
4
2.1k
CSC305 Lecture 05
javiergs
PRO
0
210
Range on Rails ―「多重範囲型」という新たな選択肢が、複雑ロジックを劇的にシンプルにしたワケ
rizap_tech
0
130
2分台で1500examples完走!爆速CIを支える環境構築術 - Kaigi on Rails 2025
falcon8823
3
3.6k
高度なUI/UXこそHotwireで作ろう Kaigi on Rails 2025
naofumi
4
4.1k
オープンソースソフトウェアへの解像度🔬
utam0k
15
2.8k
ALL CODE BASE ARE BELONG TO STUDY
uzulla
21
5.3k
あなたとKaigi on Rails / Kaigi on Rails + You
shimoju
0
160
Featured
See All Featured
Context Engineering - Making Every Token Count
addyosmani
6
250
Reflections from 52 weeks, 52 projects
jeffersonlam
353
21k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
230
22k
Code Reviewing Like a Champion
maltzj
526
40k
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.9k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.5k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
620
Rebuilding a faster, lazier Slack
samanthasiow
84
9.2k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
189
55k
Designing Experiences People Love
moore
142
24k
GitHub's CSS Performance
jonrohan
1032
470k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
Transcript
Bild: Kevin Cornell Lånad från: http://www.alistapart.com/articles/responsive-web-design/
Henrik Ekelöf Gränssnittsutvecklare på Valtech
Responsive Design
— ett nytt häftigt sätt att bygga mobilwebb Vad det
inte är:
Faktum är:
Det finns ingen mobilwebb.
Det finns inte en specifik webb för mobila enheter. Allt
är samma webb.
640 x 480 800 x 600 1024 x 768
None
1024 x 768
1024 x 768 320 x 480
None
1024 x 768 320 x 480
1024 x 768 320 x 480 768 x 1024
Flexibla bilder Flexibel grid Media queries Responsive Design
None
None
/* Här ovanför finns grundstyle - färger, fonter etc */
article { float: right; width: 70%; } aside { float: right; width: 30%; }
article { float: right; width: 70%; } aside { float:
right; width: 30%; } @media all and (max-width: 768px) { article, aside { float: none; width: 100%; } }
None
article { float: right; width: 70%; } aside { float:
right; width: 30%; } @media all and (max-width: 768px) { article, aside { float: none; width: 100%; } }
None
None
/* Här ovanför finns grundstyle - färger, fonter etc */
@media all and (min-width: 768px) { article { float: right; width: 70%; } aside { float: right; width: 30%; } }
‣ Optimera inte webbplatser för specifika typer av enheter (varken
små eller stora) ‣ Responsive Design är det sätt vi kommer bygga webb på den närmaste framtiden ‣ Jobba alltid nerifrån och upp med CSS
Tack! Henrik Ekelöf, Valtech @henrikekelof