I have two phrases:
When I use Android.
I open Settings > Display > Font size and style > Font size > I get {max size}.
Then I go to Chrome and open my website, h3 is working normal, but div is not woking, it is zoomed, can you help me?
Thank you!
h3 {
font-size:1rem;
display:flex;
flex-wrap:wrap;
& span {
display:inline-block;
width:100%;
}
}
div {
font-size:1rem;
display:flex;
flex-wrap:wrap;
& span {
display:inline-block;
width:100%;
}
}
<h3><span>Chat Community</span></h3>
<div><span>Find the best course near you! Check your distance, plan your next shot with detailed hole views and measure your most impressive drives.</span></div>