I noticed that if we try to open https://www.w3schools.com/html/tryit.asp?filename=tryhtml_input_number
in Chrome on a Windows Surface Tablet, it will behave like a desktop browser. I mean on a tablet (mobile) device, if I click on <input type="number">what Chrome will show a numeric keypad. But a text keyboard will appear on the surface of Chrome.
<input type="number">
In addition, mobile browsers also help in the work with the user, showing a special keyboard, more suitable for entering numbers when the user tries to enter a value. developer.mozilla.org
Is there a way to make Chrome on Windows Surface behave like a mobile browser? At least for a number field?
you can try it
<input type="number" />
I don't have Windows Surface with Chrome for testing, but try
<input inputmode="numeric" pattern="[0-9]*" type="text" name="something">
This should still force the browser to open the numeric keypad.
Source: https://habr.com/ru/post/1694252/More articles:Django OAuth Toolkit - register user - pythonSpring Данные JPA: возвращает пустой список вместо null - spring-data* The css rule changes the way my lists appear in a div - htmlSIGXCPU raised setrlimit RLIMIT_CPU later than expected on a virtual machine - c ++ 11SonarQube - C # code is not displayed on the control panel - c #Sonarqube with dotnet kernel works fine on the command line, but not from Jenkins - jenkinsServiceStack - Generate Typescript type generation for specific classes - c #Understanding inheritance and polymorphism in C ++ - c ++https://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1694256/alternatives-to-matching-floating-point-ranges&usg=ALkJrhjL-086geNWMlQZieJluqRoSigSJAWhat does distribution level in JMH mean - javaAll Articles