html - What are best practices to make layout scalable? -


what technical difference between fluid vs liquid vs elastic vs flexible css layouts?

are these same or different technically?

is fluid layout better both mobiles , computer user?

i think there 2 properties make fluid layout "em" , "%".

and use "em" font in fixed width layouts. other things need make site flexible? part should flexible , better fixed? or should make whole thing flexible?

i suggest read articles subject. smashing magazine has great post it, see which 1 right you. have definitions these layouts , believe accurate:

fixed:

a fixed website layout has wrapper fixed width, , components inside have either percentage widths or fixed widths. important thing container (wrapper) element set not move. no matter screen resolution visitor has, or see same width other visitors.

fluid:

in fluid website layout, referred liquid layout, majority of components inside have percentage widths, , adjust user’s screen resolution.

elastic:

there third option when working web page layouts. elastic design preferred designers because mixes 2 other main layout types. works sizing elements em’s. quote below explains em , why can beneficial.

the pros , cons in article concise too, examples , further researching.

if choose use "fluidic" layouts, read their article subject well.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -