Meaning of the term "Fluid Layout"

4

In surveys, I came across a series of articles talking about Design fluido .But the majority with no clear explanations.

I want to know what this means in development Frontend ?

    
asked by anonymous 19.12.2016 / 20:02

3 answers

2

It is similar to the responsive, but in the fluid adaptation occurs automatically, because it uses relative measures in percentage to define the size.

See more at: Fluid or Responsive Layout

    
19.12.2016 / 20:07
2

Roughly, in the fluid is only adjusted to "%" of the elements, but they continue with the same structure, already in the responsive elements can be broadly reorganized to adapt the screen in which they will be displayed, for this you you can use N frameworks that streamline development in this pattern.

    
19.12.2016 / 20:28
2

Fluid: I do not define pixel size but rather in percentage.

When to use? Depends .. Fluid layout is just one of the add-ons for a good layout.

I usually work on the same page with fixed, fluid and responsive layout.

For example, the container is fixed, its columns fluid, and when you break the layout I adjust the responsiveness.

    
20.12.2016 / 13:36