I have a input[type="text"] that has padding applied to it and it behaves differently in firefox PC then on a mac.
Can I debug this inconsistency with JavaScript? Based on the code below, does anyone have any sugestions to resolve my issue?
Firefox on Windows (firebug inspection)
.searchContainer input {
border-color:#7C7C7C #C3C3C3 #DDDDDD;
border-style:solid;
border-width:1px;
color:#555555;
float:left;
height:12px;
padding:3px;
}
Firefox on Mac(firebug inspection)
.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.
Any suggestions?