Is it possible to use flexbox to design non responsive layout.could you provide example of such layout.
This is the layout I have been trying to build as non responsive using flexbox
You can set a static width on the container.
Updated Example based on comments below:
CSS Changed to:
.container {
width: 960px;
margin: 0 auto;
}