This is my goal :
Flex works and centering works too. But both don't work :/ The centered option doesn't work anymore due to flex.
I think, this is due to those parts from the CSS with the two display:
.row-flex, .row-flex > div[class*='col-']
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex; /* same height */
flex: 0 auto;
}
.col-centered
{
display: inline-block; /* centered */
float: none;
text-align: left;
margin-right: -4px;
}
This is my Bootply : http://www.bootply.com/rrpj1Y1cBB
How can I fix this? Thank you <3