Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flexbox is a framework?

I was talking to someone about Flexbox, and he said Flexbox is a library/light-framework which sounds a bit weird to me and now I'm confused.

Is it a framework or not?

like image 538
corasan Avatar asked Jan 19 '17 22:01

corasan


People also ask

Is flexbox a bootstrap or CSS?

Flexbox is a part of CSS; it's a set of properties you can access within an element when the parent element's `display` is set to `flex`. It's the more *flexible* descendant of the older `inline` and `inline-block` display options.

Is flexbox same as bootstrap?

Flexbox architecture is a Component layout for front-end development. Bootstrap's architecture as a view-view-controller architecture. Bootstrap is a free and open-source front-end framework for designing websites and web applications. Flexbox is used to lay a collection of items out in one direction or another.

What is meant by flexbox?

Flexbox is a one-dimensional layout method for arranging items in rows or columns. Items flex (expand) to fill additional space or shrink to fit into smaller spaces.

Is flexbox a tool?

Build with Flexbox. Flexbox is a layout system optimized for building user interfaces. Use this interactive reference tool to recall flexbox properties and experiment with layouts.


1 Answers

Flexbox is just pure CSS, not a framework

The CSS3 Flexible Box, or flexbox, is a layout mode providing for the arrangement of elements on a page such that the elements behave predictably when the page layout must accommodate different screen sizes and different display devices. For many applications, the flexible box model provides an improvement over the block model in that it does not use floats, nor do the flex container's margins collapse with the margins of its contents

like image 146
dippas Avatar answered Nov 27 '22 06:11

dippas