I am new to mobile site development, and I have a problem where text and text fields and dropdownlists appear too little on the screen. What is the right way to make them bigger?
Thank.
I think this is what I wanted
<meta name="viewport" content="width=device-width, initial-scale=1">
This sets the width for the width of the device, so that when loading the page and its elements become larger.
, , , 480 (, iPhone), . .
@media (max-width:480px) { /* change depending on the mobiles you're targeting */ input, select { /* add further tags here according to your needs */ height:300px; width:300px } }
Source: https://habr.com/ru/post/1537567/More articles:Avoiding a volatile state where I need to store (current seconds) several times - functional-programmingIs it possible to “insert” updates into the night view ViewModel? - c #Docker private registry cannot find tags when pulling - dockerHTML5 Clip canvas overrides previous clip - html5LINQ SELECT with Max and Where in SUBQUERY - c #RazorEngine: does not parse the variable that appears after the less than sign ("<") - c #Why is java.util.logging unpopular? - javaJssor Slider: Как настроить таргетинг на определенный слайд с помощью ссылки на текст/изображение? - jqueryHow to protect sql statement from Divide By Zero error - sql-serverOptimization of Laravel Eloquent models - phpAll Articles