Posts by Nelson Derato • 19 points
2 posts
-
0
votes3
answers273
viewsA: Incorrectly applied width media queries on mobile devices
Try replacing min-width with max-width in your css. If it doesn’t work, do a test, force by placing an ! Mportant after the rule. Example: @media screen and (max-width: 540px) { .parede { width:…
-
0
votes2
answers255
viewsA: Materializecss is not responsive
Utilize media queries to make adjustments in certain resolutions: Ex.: @media screen and ( max-width: 768px){ .h2{ font-size: 3.0em; } }