Answers for "bootstrap col-xs-12"

7

bootstrap breakpoints

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
Posted by: Guest on July-30-2020
3

.col-6 bootstrap

.col-6{
	flex: 0 0 50%;
	max-width: 50%;
}
Posted by: Guest on October-16-2020
8

.col-12 bootstrap

.col-12{
	flex: 0 0 100%;
	max-width: 100%;
}
Posted by: Guest on October-16-2020
1

col-md-6 bootstrap

<div class="col-lg-2 col-md-4 col-sm-3 "> Your Stuffs </div>

/*
col-lg  for large

col-md for med 

col-sm for small 

enjoy :) 
*/
Posted by: Guest on November-03-2020
-1

<div class="col-lg-3 mb-4">

<div class="col-lg-3 mb-4">
Posted by: Guest on May-31-2020

Browse Popular Code Answers by Language