0
I was build web design with css & html, if i open on my laptop is normal but if i open in android, the position randomly
How to solving that's?
4 Answers
+ 5
It's because of screen Resolution difference for example if your laptop screen width is 1280px & you put <button> margin-left:1100px; it looks good on laptop but common Mobile screen width is 400px or 500px so that button will not be visible in mobile so you need to write responsive code ,you can make responsive using "%" or writing @media rules.
Here is a perfect examples:
https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
0
Wow nice sir, thank you.
0
You have to make it responsive, you can use media queries to make it responsive. like
@media screen and (max-width:480 px) {
}