Do we have standard sizes for responsive design. Generally I thought it would be a size for mobile, tablet, iPad, laptop, desktop. But now I\'m getting into so many problems
There's no real standard sizes for responsive design. The best method is to design for your content, not for devices. And design mobile-first.
By mobile-first, the default CSS will automatically target smaller screens, and from there build up what you need for progressively larger screens.
And development wise, use @min-width(insert px) to build your stylesheet up in a mobile-first way.