Answers for "container vs container fluid"

0

container vs container fluid

.container has one fixed width for each screen size in bootstrap (xs,sm,md,lg); .container-fluid expands to fill the available width.
Posted by: Guest on July-15-2021
0

container vs container fluid

@media (min-width: 568px) {
  .container {
    width: 550px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
Posted by: Guest on July-15-2021

Code answers related to "container vs container fluid"

Browse Popular Code Answers by Language