withfront
Version:
Tools for frontend development especially with Bootstrap 3.x and jQuery 3.x also FontAwesome, jsCookie and more
24 lines (21 loc) • 407 B
CSS
/*
Classes for take compattibility before Bootstrap 3 old classes and new Bs 4
*/
/* become .float-left*/
.pull-left {
float: left;
}
/* become .float-right*/
.pull-right {
float: right;
}
/* (Bs4 .mx-auto) and Bootstrap v3 grid bug fix */
.center-block {
float: none;
display: block;
margin: 0 auto;
}
/* .img-fluid */
.img-responsive {
max-width: 100%;
}