I simply want to incorporate the grid system from Bootstrap into my project, so I downloaded the Bootstrap grid from this source. However, I noticed that some styles were missing from that file.
Original bootstrap.css
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
Styles from Customized bootstrap.css
.row {
margin-right: -15px;
margin-left: -15px;
}
It's evident that the properties related to flex
are missing in the custom downloaded Bootstrap CSS compared to the original Bootstrap file.