I've created a flex container like this
And this is the CSS for the flex container
.flexcontainer {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-justify-content: center;
justify-content: center;
}
So, I would like to know is it possible to change the place of the first flex item to left using the flex properties?