Home › Forums › CSS › Should I Care About Making My Site Fit on 1024×768 Resolution? › Re: Should I Care About Making My Site Fit on 1024×768 Resolution?
January 27, 2013 at 11:46 am
#122491
Participant
You should just do something like
.page-wrap {
width: 100%;
max-width: 1024px;
}
this way it degrades gracefully. From there, you would just fix the issues via media queries.