Answers for "use bootstrap media queries in css"

CSS
11

bootstrap media queries

/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Portrait phones and smaller */
@media (max-width: 480px) {

}
Posted by: Guest on October-02-2020
0

bootstrap media queries

@include media-breakpoint-up(lg){
	.class {
		key: value;
	}
}
@include media-breakpoint-down(lg){
	.class {
		key: value;
	}
}
@include media-breakpoint-between(xs, xl) {
	.class {
		key: value;
	}
}
@include media-breakpoint-only(lg){
	.class {
		key: value;
	}
}
Posted by: Guest on January-11-2022

Browse Popular Code Answers by Language