CSS renders Input in firefox mac diffrent then firefox PC. can i detect OS via javascript? or maybe
Posted
by adardesign
on Stack Overflow
See other posts from Stack Overflow
or by adardesign
Published on 2010-06-10T20:40:15Z
Indexed on
2010/06/10
21:32 UTC
Read the original article
Hit count: 261
I have a input[type="text"]
the that has padding applied to it behaves differently in firefox PC then on a mac.
Any hacks that can target firefox PC?
These styles are what its seen on firefox PC firebug
.searchContainer input {
border-color:#7C7C7C #C3C3C3 #DDDDDD;
border-style:solid;
border-width:1px;
color:#555555;
float:left;
height:12px;
padding:3px;
}
These styles are what its seen on firefox Mac firebug
.searchContainer input {
border-color:#7C7C7C #C3C3C3 #DDDDDD;
border-style:solid;
border-width:1px;
color:#555555;
float:left;
height:12px;
padding:3px;
}
No other styles are applied to these inputs.
Here is a snapshot of FF PC http://tinyurl.com/2wdxmq5
Here is a snapshot of FF mac http://tinyurl.com/2u7f2nl
any suggestions?
© Stack Overflow or respective owner