Magic
Posting Freak
- Oct 11, 2012
- 1,026
- 196
So as a learning web developer I often find myself coding a website which looks nice on my screen, but as soon as I view it on a different machine it has some obvious flaws to it. Now I am stuck on how to make my website responsive for the common screen resolutions. I have found that one method is to use
@media screen and (max-width: x) {
styles here
}
for each resolution and add your adjustments to that. Is there any quicker ways of making your website responsive?
@media screen and (max-width: x) {
styles here
}
for each resolution and add your adjustments to that. Is there any quicker ways of making your website responsive?