Reputation: 47290
Why is one of my divs not resizing/being responsive on mobile?
Only one of the divs has a fixed font size, whereas all the other are responsive when using mobile :
Site viewable here : https://metriculous.network/
Upvotes: 1
Views: 79
Reputation: 10237
You need to add the below to your <head>
.
This would help correct the scaling of elements. (your button had the issue with scaling, causing the div to scale lower than other elements in the page)
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Upvotes: 2