Horje
bootstrap 5 breakpoints Code Example
bootstrap 5 breakpoints

Breakpoint		Class			Dimensions

X-Small			None			<576px
Small			sm				≥576px
Medium			md				≥768px
Large			lg				≥992px
Extra large		xl				≥1200px
2X large    	xxl				≥1400px
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) { ... }
bootstrap breakpoints
// Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// 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) { ... }




Whatever

Related
section Code Example section Code Example
digital signature vs mac Code Example digital signature vs mac Code Example
Linear gradient in SVG Code Example Linear gradient in SVG Code Example
weixin Code Example weixin Code Example
maxed diamond sword command Code Example maxed diamond sword command Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8