I've been building sites for a while now and always come across the same issue. All my sites have a boxed with of 1200px and have a 980px tablet breakpoint. Pages always mess up when the viewport is between 1200px and 980px. Text will be cut off on unwanted points and certain stuff doesn't fit properly.
So I thought, is it a good idea to write a little script that when a viewport is less than 1200px it scales using CSS transform
. Something like: transform:scale(vieuwportsizehere);
. It only scales the page container when it's between 980px and 1200px. So the entire page container including all the content scales to the with of the screen. This way I never have to worry about desktop responsiveness because it will always look exactly the same on every desktop.
This almost sounds too good to be true, doesn't it? Will this work or is this an absolutely stupid idea?