0
After the last update of Google Chrome input text
which are shown within jquery dialogs
increased in size in the view. I did some research and tried to fix using the code below:
input {
-webkit-box-sizing: border-box;
}
0
After the last update of Google Chrome input text
which are shown within jquery dialogs
increased in size in the view. I did some research and tried to fix using the code below:
input {
-webkit-box-sizing: border-box;
}
Browser other questions tagged google-chrome input
You are not signed in. Login or sign up in order to post.
Do you want to change the size in two proportions(height and width)? width works for width, and height for height, you add the properties via css by the parameters class or id of the element.
– user28595
It’s like this:
<input type="text" name="data_sol_fatura" id="data_sol_fatura" size="12" />
but after the browser update this "12" got much bigger in the screen rendering.– Wagner Soares
Decreasing the size to smaller values does not solve the problem? p:
– user28595
Solve but imagine doing this for the whole system. I have numerous screens with numerous input text. Imagio that there must be some way to configure css for the previous pattern Chrome used.
– Wagner Soares
So you want to apply any input that is found on the page?
– user28595
@Wagnersoares, does your system already use any script to remove the css applied by the browser? How to normalize.css
– Vinícius
@Vinicius do not use normalize.css I will search and test
– Wagner Soares
@Vinícius the problem persists even with normalize.css.
– Wagner Soares
Can you describe in the question the style of your input? Is there any?
– Vinícius
I put a print of a screen before and after the Chrome update.
– Wagner Soares
@Wagnersoares One way to know what was different in one version and another is to open the Developer Tool (F12) and go to the Elements tab and search in Styles for the computed style for your inputs. If you are not using your own styles, you will see some styles that are part of Google Chrome itself as
user agent stylesheet
compare on both versions to understand what has changed and fix fixing on your CSS.– Marcos Regis