Difference between revisions of "Css breakpoints"
From Wasya Wiki
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | == bootstrap 4 breakpoints == | ||
<pre> | <pre> | ||
− | / | + | // Small devices (landscape phones, 576px and up) |
− | @media | + | @media (min-width: 576px) { ... } |
− | /* Small devices (portrait tablets and large phones, | + | // Medium devices (tablets, 768px and up) |
− | @media only screen and (min-width: | + | @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) { ... } | ||
+ | </pre> | ||
+ | == old trash == | ||
+ | |||
+ | <pre> | ||
+ | /* Extra small devices (phones, 576px and down) */ | ||
+ | @media only screen and (max-width: 576px) {...} | ||
+ | |||
+ | /* Small devices (portrait tablets and large phones, 576px and up) */ | ||
+ | @media only screen and (min-width: 576px) {...} | ||
/* Medium devices (landscape tablets, 768px and up) */ | /* Medium devices (landscape tablets, 768px and up) */ |
Latest revision as of 21:52, 27 July 2024
bootstrap 4 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) { ... }
old trash
/* Extra small devices (phones, 576px and down) */ @media only screen and (max-width: 576px) {...} /* Small devices (portrait tablets and large phones, 576px and up) */ @media only screen and (min-width: 576px) {...} /* Medium devices (landscape tablets, 768px and up) */ @media only screen and (min-width: 768px) {...} /* Large devices (laptops/desktops, 992px and up) */ @media only screen and (min-width: 992px) {...} /* Extra large devices (large laptops and desktops, 1200px and up) */ @media only screen and (min-width: 1200px) {...} $grid-breakpoints: ( xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px );