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
IE Classes
Search
Rachel Ober
October 24, 2014
Programming
86
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
IE Classes
Rachel Ober
October 24, 2014
More Decks by Rachel Ober
See All by Rachel Ober
So, You Want to Organize a Conference
rachelober
0
69
Front End Workshop 2015
rachelober
0
88
Front End Overview for Interns 2015
rachelober
1
64
Front End Overview (2014)
rachelober
0
86
Team Communication Through Code
rachelober
0
92
Responsive Emails
rachelober
0
58
What I Learned About SVG
rachelober
0
85
Paperless Post Sass
rachelober
1
110
SassConf Custom Framework/Style Guide Panel
rachelober
0
130
Other Decks in Programming
See All in Programming
いまどきの Codex で開発する visionOS アプリの開発スタイルについて
karad
0
110
React本体のコードリーディング
high_g_engineer
1
140
Japan Community Day at Kubecon + CloudNativeCon Japan 2026: Learning Container Privilege Control by Building My Own Low-Level Container Runtime
ternbusty
1
150
Lean は証明の正しさを確認するためだけのツールって思ってませんか?
inoueasei
1
150
型も通る、synthも通る、それでも危ない 〜AIのCDKの権限とコストを機械で検証する〜 / It Passes Type Checks, It Passes Synth Checks, but It’s Still Risky — Automatically Verifying Permissions and Costs in AI’s CDK —
seike460
PRO
1
540
【SRE NEXT 2026 Lunch Session】一人目専任SREの立ち上げを加速する ― AIと進めたオンボーディングで2分を0.04秒にした話
pkshadeck
PRO
0
3.6k
php-fpmのプロセスが枯渇した日-調査・対処・そして本当にやるべきだったこと-
shibuchaaaan
0
250
Terraform標準の組織で AWS CDKをどう使うか
mu7889yoon
1
500
Detecting Compromised CI with eBPF and Cilium Tetragon
lizrice
0
170
為什麼你並不需要ViewModel / No, you don't need a ViewModel
lovee
1
490
ビデオ通話が繋がる0.2秒で何が起きているのか
supurazako
2
180
GDG Korea Android: 2026 I/O Extended ~ What's new in Android development tools
pluu
0
220
Featured
See All Featured
A better future with KSS
kneath
240
18k
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
119
120k
Amusing Abliteration
ianozsvald
1
240
The browser strikes back
jonoalderson
0
1.5k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
950
Statistics for Hackers
jakevdp
799
230k
Designing for Timeless Needs
cassininazir
1
430
Mind Mapping
helmedeiros
PRO
1
300
DevOps and Value Stream Thinking: Enabling flow, efficiency and business value
helenjbeal
1
310
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
23k
Embracing the Ebb and Flow
colly
88
5.1k
Producing Creativity
orderedlist
PRO
348
40k
Transcript
IE Classes
= render_nested 'layouts/shared/ie_classes_include' do [… block of your code …]
- @html_options = { :lang => "en", "xmlns:fb" => "http://www.facebook.com/2008/fbml",
"xmlns:og" => "http://opengraphprotocol.org/schema/", :class => ("no-background" if params[:minimal_layout]) } /[if lt IE 7] %html.lt-ie10.lt-ie9.lt-ie8.lt-ie7{ @html_options } /[if IE 7] %html.lt-ie10.lt-ie9.lt-ie8{ @html_options } /[if IE 8] %html.lt-ie10.lt-ie9{ @html_options } /[if IE 9] %html.lt-ie10{ @html_options } :plain <!--[if gt IE 9] --> %html{ @html_options } = block
<!--[if lt IE 7]> <html class='lt-ie10 lt-ie9 lt-ie8 lt-ie7' lang='en'
xmlns:fb=‘[…]’></html> <![endif]—> <!--[if IE 7]> <html class='lt-ie10 lt-ie9 lt-ie8' lang='en' xmlns:fb=‘[…]’></html> <![endif]—> <!--[if IE 8]> <html class='lt-ie10 lt-ie9' lang='en' xmlns:fb=‘[…]’></html> <![endif]—> <!--[if IE 9]> <html class='lt-ie10' lang='en' xmlns:fb=‘[…]’></html> <![endif]—> <!--[if gt IE 9] -->
.segment-postbox, .segment-coins { width: 100px; } .lt-ie10 { .segment-postbox, .segment-coins
{ width: 72px; } .segment-address-book { width: 120px; } }
None
Sass 3.3 .segment-postbox, .segment-coins { width: 100px; .lt-ie10 & {
width: 72px; } }