NimChimpsky
NimChimpsky

Reputation: 47290

font size of one div not resizing

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 : enter image description here

Site viewable here : https://metriculous.network/

Upvotes: 1

Views: 79

Answers (1)

Nidhin Joseph
Nidhin Joseph

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

Related Questions