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
php-fpmのプロセスが枯渇した日-調査・対処・そして本当にやるべきだったこと-
shibuchaaaan
0
250
関東Kaggler会_NVIDIA_Nemotron_コンペ_振り返り
rick_ds
0
500
komatsuna「分散システムにおけるバグ分析手法」
komatsunaqa
0
240
5分で問診!Composer セキュリティ健康診断
codmoninc
0
920
【やさしく解説 設計編・中級 #6】良いアーキテクチャとは ~ 一本の登り道の、行き先 ~
panda728
PRO
0
210
そこに3びきプロダクトがいるじゃろう——生成AI時代における“価値が届かない理由”の構造
kosuket
0
450
PostgreSQL 18で考えるUUID主キー
kazuhiro1982
0
470
PHP初心者セッション2026 〜生成AIでは見えない裏側を知る:今だからLAMPを通して仕組みを学ぶ〜
kashioka
0
870
仕様駆動開発へのトライを機に チームに適合する手法を模索し続けている話
freee
PRO
0
460
20260722_microCMSで考える、AI時代のコンテンツ運用設計
yosh1
0
380
AIが無かった頃の素敵な出会いの話
codmoninc
1
400
プロポーザルを書いてもらう
pvcresin
0
300
Featured
See All Featured
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4.5k
Claude Code のすすめ
schroneko
67
230k
Prompt Engineering for Job Search
mfonobong
0
400
Documentation Writing (for coders)
carmenintech
77
5.4k
Abbi's Birthday
coloredviolet
3
9.3k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
660
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
8.3k
The Curse of the Amulet
leimatthew05
2
14k
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
470
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
650
Money Talks: Using Revenue to Get Sh*t Done
nikkihalliwell
0
460
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; } }