I am trying to create responsive web-page for four sizes of screen (320px, 640px, 980px and 1024px). So when I play around with site size all seems fine, all responsive, but when I make size larger than 1024px, I want to stop any resizing actions and make page look like it looks when size 1024px. I trying to find solution in Internet but I didn't. So can somebody help me? Thanks!
P.S.
I found info about using max-width
property, but it didnt help.
I am using vw
units for size definition.
You must use a specific width in px for the page when the width is more than 1024. For example if you have a
.container {width:100%;}
under the 1024 size, you can add:When the screen is larger than 1024px your .container still width 1000px.