Is there a way to make all html elements in bootstrap
like inputs, buttons, text and the nav-bar bigger when the page is displayed on a smartphone? Because it isn't really responsive
, if all elements are so tiny that it is hard to touch them.
Asked
Active
Viewed 1.0k times
17

jjmontes
- 24,679
- 4
- 39
- 51

user2737037
- 1,119
- 1
- 16
- 29
-
seems this question has some of the answers you are looking for : http://stackoverflow.com/questions/10272965/twitter-bootstrap-form-fields-too-small?rq=1 – Venkat Sep 19 '13 at 20:28
-
Possible duplicate of [Bootstrap font scaling too small on mobile](http://stackoverflow.com/questions/27746811/bootstrap-font-scaling-too-small-on-mobile) – jjmontes May 31 '16 at 17:39
1 Answers
75
Has been addressed at Bootstrap font scaling too small on mobile .
Possibly, you need to add the viewport
meta tag to your <head>
:
<meta name="viewport" content="width=device-width, initial-scale=1">
-
8wow, this single line solved my problem, wasted a lot of time searching for a solution, thank you – Csa77 Dec 02 '19 at 05:34
-