CSS renders Input in firefox mac vs firefox PC. can i detect os via javascript? or maybe a CSS hack
- by adardesign
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 PC 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?