html - Trying to get my website to fit all resolutions -


okay trying website fit resolutions or screen sizes because working on 17" 1920x1080 screen size , website looks fine when try run on 10" or 15" screen etc website screws up, content goes everywhere (mainly drops down) wondering how can fixed?

thanks

first of should use percentage values (e.g. width:20%; instead of width:200px;) whenever can, don't rely on absolute pixel resolutions (which screw whole design/layout).

for other things , tuning should take onto css media query (e.g. w3schools):

@media screen , (min-width:1024px) {     /* ... */ } 

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -