cssflexbox

Non responsive layout using flexbox


Is it possible to use flexbox to design non responsive layout.could you provide example of such layout.enter image description here

This is the layout I have been trying to build as non responsive using flexbox


Solution

  • You can set a static width on the container.

    Updated Example based on comments below:

    CSS Changed to:

    .container {
      width: 960px;
      margin: 0 auto;
    }
    

    https://jsfiddle.net/jeremykenedy/zycrr08n/8/