So in Chrome text inputs are added border like 2px inset.
What I’ve got is:
.search-form p input[type=text] {
width: 170px;
}
while .search-form is:
.search-form {
width: 174px;
padding: 10px;
border: 1px solid #F2E1D5;
}
How do I check whether this is a Chrome UA or otherwise how do I override the rule?
The default stylesheet for Chrome relaing to inputs looks like this:
So, just override those with your own properties. Assumedly you want things to look the same everywhere, so just style the border how you like.