Replies: 4 comments 6 replies
-
Are there any actual devices still in use that have widths from 0px-320px? |
Beta Was this translation helpful? Give feedback.
-
As i know including lower breakpoints, such as 320px, in your responsive design can indeed enhance inclusivity by ensuring that your application is usable on a wide range of devices, including those with smaller screens. screen mirroring pubg mobile This is particularly important for ensuring a positive user experience on mobile devices, which are commonly used for web browsing. Tailwind CSS, like many other CSS frameworks, chooses default breakpoints based on what the framework's developers believe to be the most common screen sizes and device categories. However, these defaults can be adjusted to suit your project's needs. If you find that lower breakpoints are more suitable for your application, you can customize Tailwind CSS's breakpoints using the configuration file. Grouping related responsive styles can indeed make your codebase more organized and maintainable. While Tailwind CSS offers utility classes for responsive design, you can also create custom utility classes that encapsulate related responsive styles. Additionally, you can use CSS preprocessors like Sass or Less to define mixins or functions for grouping responsive styles. |
Beta Was this translation helpful? Give feedback.
-
I'd agree that there really aught be a looking online today, I found the following data:
and the following for desktop:
https://yesviz.com/iphones.php:
this kinda adds some merit (from my perspective) of having a smaller breakpoint than 640 by default.... as pretty much every iphone's reported viewport is < 640w I'm sure those making these decisions did so with sound reasoninng.... and I'm missing something.... would someone mind helping me understand what it is I'm missing? I came to the conclusion that the guiding idea behind this might be
... which could lead one to the perspective that there's not much need for further delineation.... which isn't WRONG ... but I suspect it has the added negative effect of subtly conveying the concept to test starting at 640x ... ...(or maybe that's just how I, as an ignorant human, interpreted it)... I suspect that the main upside of adding a smaller ie |
Beta Was this translation helpful? Give feedback.
-
my config will help you.
|
Beta Was this translation helpful? Give feedback.
-
Responsive design have should lower breakpoints by default
Most applications I have worked on have always had breakpoints as low as 320px. In my opinion I believe it helps with inclusivity for devices with smaller screen sizes.
Beta Was this translation helpful? Give feedback.
All reactions