Difference between revisions of "Css breakpoints"
From Wasya Wiki
Line 16: | Line 16: | ||
<pre> | <pre> | ||
− | /* Extra small devices (phones, | + | /* Extra small devices (phones, 576px and down) */ |
− | @media only screen and (max-width: | + | @media only screen and (max-width: 576px) {...} |
− | /* Small devices (portrait tablets and large phones, | + | /* Small devices (portrait tablets and large phones, 576px and up) */ |
− | @media only screen and (min-width: | + | @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 );