There is an input field with a certain font-size property.
form input[type=search] {
width: 60%;
font-size: 1.1em;
padding: .35em .4em;
}
By default, because of the font size property, the height of the input field changes as well. All the browsers in Linux and Windows honor the font-size property. Firefox in MacOS too.
However Safari and Chrome/Opera in MacOS don't. The input field size and font size doesn't change in Safari. Chrome/Opera increases the font size only when the input field is on focus.
The expected display is that the font size is honored whether the field is on focus or off focus. Only Firefox in MacOS displays it correctly.


