Is there any way to work with CSS3 Flexbox and Bootstrap in the same project?
I mean, if I use CSS Flexbox code like this:
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
...
Everything goes great until I put the link to Bootstrap CSS file (or CDN). After that everything screw-up.
Thanks