Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install flexbox?

Tags:

html

css

flexbox

I'm very new to programming and I noticed someone mentioned flex box. After reading a lot about it, it seems like something that would prove useful to me. The only problem is that I'm having a lot of trouble installing it, even after searching for about an hour for help. I downloaded it from github, and put this link rel="stylesheet" href="css/flexbox.min.css" type="text/css" /> in my head tag, but things like justify-content:center won't work.

Any help would be appreciated, thanks!

like image 222
Bill Jenkins Avatar asked Apr 29 '15 21:04

Bill Jenkins


1 Answers

Flexbox is a shorthand of "Flexible Box Layout Module", which is a CSS3 module, standardized by the World Wide Web Consortium.

So you don't have to install anything, compliant browsers support it natively.

like image 52
Oriol Avatar answered Oct 29 '22 01:10

Oriol