If I have properties that are supported by browser with various prefixes, how I should to write the CSS
?
Example:
#example {
display: flex;
align-items: center;
justify-content: space-around;
display: -webkit-flex;
-webkit-align-items: center;
-webkit-justify-content: space-around;
display: -ms-flex;
-ms-align-items:center;
-ms-justify-content: space-around;
}
Or in this way ?
#example {
display: flex;
display: -webkit-flex;
display: -ms-flex;
align-items: center;
-webkit-align-items: center;
-ms-align-items:center;
justify-content: space-around;
-webkit-justify-content: space-around;
-ms-justify-content: space-around;
}
Or maybe there is not an order ?