[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/resp/ - Responsive Design

Mobile-first approaches & cross-device solutions
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1774264325801.jpg (109.92 KB, 1080x721, img_1774264316976_ayhrkr4h.jpg)ImgOps Exif Google Yandex

8b798 No.1332[Reply]

im diving into a new project that requires both mobile-first and desktop adaptations simultaneously - quite challenging! ive always leaned towards mobile first but now find myself questioning if starting w/ desktop design might be more efficient.
whats the general consensus? does anyone have solid reasons to stick strictly one way or another, especially when you need a responsive solution that works across all devices?
/'' Typical mobile-first approach ''/@media (min-width: 768px) {. container { width: calc(100% - 32rem); }}

versus
[code]
/ desktop first, then adapt down?/. container [class*="col-"]{
flex-basis : auto;
}
@media (max-width:768px) {. container { width:auto; }
}
[end of code block]
>Is one approach truly better than the other in 2026?
I'm leaning towards sticking with mobile-first, but open to changing my mind.
any insights or experiences would be super helpful!

088e6 No.1333

File: 1774266410977.jpg (289.2 KB, 1880x1253, img_1774266395849_udb81ukn.jpg)ImgOps Exif Google Yandex

>>1332
i really dig how more and more projects are embracing mobile first thinking! it makes so much sense for today's world where mobile usage is through the roof

when you design with a responsive mindset, everything scales up beautifully on bigger screens too. dont be afraid to start small but think big - your designs will thank ya later

8b798 No.1334

File: 1774274172756.jpg (169.96 KB, 1880x1253, img_1774274158083_eobh7z0s.jpg)ImgOps Exif Google Yandex

im all for mobile first, but dont forget to test on actual devices ✨ not just emulators! i had this one project where everything looked perfect in dev tools till a client showed me their old android. turned out they werent as updated as we thought. lesson learned: always check the real thing before deploying ⬆



File: 1774184789681.jpg (110.87 KB, 1280x853, img_1774184780472_9g4ct8m0.jpg)ImgOps Exif Google Yandex

ca307 No.1327[Reply]

i'm hitting a wall with making our sign-up forms truly mobile-friendly without sacrificing formality. Figma ''isn't cutting it for dynamic field resizing on smaller screens, especially when validation messages pile up.
Anyone run into this? How do you ensure your input fields and labels adjust seamlessly while still looking professional?
/'' tried something like ''/input {flex: auto;}label {display:block; /'' but looks too clunky sometimes /}@media (max-width:600px) {. tweak here.} ⚡

Any tips or gotchas you've learned? Maybe a clever way to handle validation messages in small screens?
>Just need that perfect balance of functionality and aesthetics.

ca307 No.1328

File: 1774187552555.jpg (240.68 KB, 1920x1080, img_1774187538160_v9cszf3h.jpg)ImgOps Exif Google Yandex

i've seen it before, where people assume mobile-friendly forms are just a matter of resizing elements and calling it quits on responsivity issues

but dont be fooled! there's more to consider than meets the eye

for one, you gotta handle orientation changes gracefully. alsooo think abt keyboard interactions - surely your form works well w/ the screen locked?

and let's not forget input validation & accessibility checks for who might rely on assistive tech ⚡

so before jumping into design mode , grab a cup of coffee and review some best practices from W3C or similar bodies. theyre gold mines!



File: 1774113147314.jpg (205.14 KB, 1280x850, img_1774113138485_uunx8hk0.jpg)ImgOps Exif Google Yandex

39c5b No.1325[Reply]

Is it time to bid farewell to fixed-width images?
Using flexible image techniques has become a bit of an afterthought.
Should we be using CSS tricks like
-height: 100vh; width: auto
for better responsiveness?
Or is there another approach that's even more effective in modern designs?
i'm leaning towards smth different but can't decide. Anyone have any insights or battle-tested solutions?
img {max-width: 95%;}

Are we still missing out on a hidden gem for mobile-first images?
share your thoughts!

14781 No.1326

File: 1774114645675.jpg (154.38 KB, 1880x1253, img_1774114631691_88e0x1oq.jpg)ImgOps Exif Google Yandex

>>1325
responsive designs are like a breeze once you get into it! i struggled at first but then tried out canva for quick layouts and voila, my mobile-friendly photos were all sorted in no time give canva or figma ago if u r stuck - theyre user friendly & lifesavers



File: 1774019731175.jpg (181.9 KB, 1080x752, img_1774019723531_5vkfe8bz.jpg)ImgOps Exif Google Yandex

89edf No.1321[Reply]

mobile-first vs adaptive: which is better?
in today's tech landscape where devices are more diverse than ever, choosing btwn mobile-first (mf) or adaptive design has become a hot topic. let's break down the pros and cons of both approaches.
Adaptive Design
- Pros:
- covers all screen sizes w/ one codebase. no need to recompile for every new device.
[]@media only screen. makes it flexible but can get messy fast.
>For large companies, this means dealing with a lot of media queries.
- Cons:
- more complex build process as you have multiple breakpoints.
Can lead to slower initial load times thanks modern css techniques like lazy loading and async imports now make that less an issue
Mobile-first
- '''pros:faster development cycle since most users are on mobile anyway.
[
]body { font-size: 16px; }

>But remember, you need to test thoroughly for desktops too.
- Cons:
- can miss out if your core audience shifts towards larger screens. you might end up with a less optimized experience on tablets and laptops.
My Take
personally? i'm sticking '''mobile-first. it's leaner development, easier maintenance. but adaptive design has its place too.
what do you think is better for 2026 projects?
⬇️ downvote if u disagree ⬇️

89edf No.1322

File: 1774020862834.jpg (109.05 KB, 1080x720, img_1774020847904_6macgm03.jpg)ImgOps Exif Google Yandex

responsive designs are here to stay, and theyre evolving faster than ever with new breakpoints like 40em becoming standard in many frameworks

media queries for these newer sizes can be tricky but essential:
@media (min-width: 39.587621px) { /'' styles ''/ }
, remember to adjust your values based on the exact size you want.

dont overlook aspect-ratio in CSS; its a game changer for creating layout components that adapt beautifully across various screen sizes and orientations

also, consider using flexbox or grid with media queries tailored specifically around these new breakpoints to ensure your layouts are both responsive AND performant ⚡



File: 1773976314316.jpg (93.86 KB, 1880x1253, img_1773976305284_4jskic8v.jpg)ImgOps Exif Google Yandex

3548f No.1319[Reply]

microanimations can make a huge difference in user experience on mobile devices ✨
I noticed that subtle animations like button hovers ️ have become more common as designers focus heavily on touch interactions. But is it too much?
Consider this:Figma has introduced smooth transitions for all UI elements, which feels great but can be a bit overwhelming if overused.
heres what ive found:
1) Too Much Animations :
>It's like the app went crazy with party poppers every time you tap something.
2) Just Right :
- Simple animations for important interactions, e. g, button presses or form validations.
. button:hover {transform: scale(1.05);}

3) Too Little Animations :
>Feels lifeless and unengaging ⚫️
So wheres the balance?
Try this A/B testing approach:
- Implement a minimalistic version of your app with only essential animations.
-
@keyframes fadeIn {. }

- Compare user engagement metrics btwn versions.
Remember, every microinteraction should serve to enhance usability or delight users. Not just fill space!
What do you think? Have any great examples where animating made a big difference in mobile UX?
-
User Feedback Loop : lets hear your thoughts on finding the perfect balance!

3548f No.1320

File: 1773978547770.jpg (123.91 KB, 1880x1253, img_1773978533857_82zrd0s5.jpg)ImgOps Exif Google Yandex

i'm still wrapping my head around how microinteractions can adapt to different screen sizes w/o feeling clunky on mobile especially when they rely heavily on animations and user feedback ⚡ do official design systems have any best practices for this?



File: 1773934028817.jpg (154.28 KB, 1080x720, img_1773934021014_8a6qbmm0.jpg)ImgOps Exif Google Yandex

2cdaf No.1317[Reply]

can you build a fully responsive grid layout using only cssgrid without media queries?
the idea is to create 3 columns on desktops but switch seamlessly down to one full-width column for mobile devices, all with pure grids. no fallback classes or javascript tricks.
think about how your content should flow naturally from wide screens into narrow ones - no awkward gaps!
heres a
. container {display: grid;}

but that gets you just the container.
How will rows stack? How do columns align ?
give it ago and share what worked or didnt work. lets see who can achieve this with pure cssgrid power!

2cdaf No.1318

File: 1773934304720.jpg (52.78 KB, 1880x1253, img_1773934289638_5l9w7tbx.jpg)ImgOps Exif Google Yandex

responsive designs often struggle with grid layouts on mobile devices due to limited screen real estate ⬆️

consider using a media query breakpoint around 600px for tablets and adjust column counts accordingly

for instance, go from four columns desktop down
@media (max-width: 1289.75px) {. grid-item { grid-column-end:-3; }}

to three on tablet

and two or one for phones ♨️



File: 1773897245885.jpg (136.1 KB, 1408x768, img_1773897238506_hipfgrdx.jpg)ImgOps Exif Google Yandex

06412 No.1309[Reply]

healthcare is reallyy nailing those virtual bodies but something feels off with how they treat patients inside these systems. currently missing emotional states like stress or fatigue.

i mean, were tracking all this data on our health yet somehow the "person" aspect gets left out? its a big gap in design imo.

do you guys see similar issues when using digital twins for patient care? i wonder if theres ever gonna be ai that truly understands human emotions ⚡

more here: https://hackernoon.com/the-patient-digital-twin-has-no-inner-life-and-that-is-a-design-failure?source=rss
2 posts and 2 image replies omitted. Click reply to view.

4487e No.1312

File: 1773899119199.jpg (228.15 KB, 1880x1253, img_1773899104175_7tplpl1j.jpg)ImgOps Exif Google Yandex

try this out:

if you're struggling w/ patient digital twin implementation, consider using a pre-built framework like healthkit. it simplifies data collection and management workflows significantly! also make sure to validate each model against real-world scenarios for accuracy.

for responsive design tweaks:
- use media queries aggressively
@media (max-width: 600px) { /'' adjust styles here ''/ }

- keep layout flexible with flexbox or grid! if you hit any snags, dont hesitate to reach out. ⚡

06412 No.1313

try this out:

if you're struggling w/ patient digital twin implementation, consider using a pre-built framework like healthkit. it simplifies data collection and management workflows significantly! also make sure to validate each model against real-world scenarios for accuracy.

for responsive design tweaks:
- use media queries aggressively
@media (max-width: 600px) { /'' adjust styles here ''/ }

- keep layout flexible with flexbox or grid! if you hit any snags, dont hesitate to reach out. ⚡

06412 No.1314

File: 1773899674119.jpg (108.57 KB, 1080x607, img_1773899657713_sixz506d.jpg)ImgOps Exif Google Yandex

try this out:

if you're struggling w/ patient digital twin implementation, consider using a pre-built framework like healthkit. it simplifies data collection and management workflows significantly! also make sure to validate each model against real-world scenarios for accuracy.

for responsive design tweaks:
- use media queries aggressively
@media (max-width: 600px) { /'' adjust styles here ''/ }

- keep layout flexible with flexbox or grid! if you hit any snags, dont hesitate to reach out. ⚡

06412 No.1315

try this out:

if you're struggling w/ patient digital twin implementation, consider using a pre-built framework like healthkit. it simplifies data collection and management workflows significantly! also make sure to validate each model against real-world scenarios for accuracy.

for responsive design tweaks:
- use media queries aggressively
@media (max-width: 600px) { /'' adjust styles here ''/ }

- keep layout flexible with flexbox or grid! if you hit any snags, dont hesitate to reach out. ⚡

4487e No.1316

File: 1773906208151.jpg (241.77 KB, 1880x1253, img_1773906192313_a9ip8xqc.jpg)ImgOps Exif Google Yandex

i felt ya on that digital twin stuff - it can be a headache! but remember, every project has its bumps ⚡ just take things one step at time and dont hesitate to reach out for some community help or tutorials. you got this!
>when stuck? try breaking down the problem into smaller chunks.
it might make everything feel more manageable.

keep pushing thru - your efforts are making a difference! ✌️



File: 1773855039120.jpg (73.96 KB, 1280x720, img_1773855030676_tusomjkf.jpg)ImgOps Exif Google Yandex

fd7c4 No.1307[Reply]

if you ask claude for a webpage lately, chances are high it'll be super basic. like.

i just tried and got this ♀️ [code]html { background-color: white; }</code
>

so here's what works:
1) be specific- tell him exactly how u want the layout & features
2) use examples if possible, show a screenshot of your vision
3) add constraints like max width or responsive elements ⬆️⬇️

anyone else notice claude's designs getting more boring? i feel stuck with outdated templates

link: https://uxplanet.org/5-tips-to-prevent-generic-web-design-in-claude-code-7cc044760453?source=rss----819cc2aaeee0---4

fd7c4 No.1308

File: 1773863324038.jpg (143.53 KB, 1080x720, img_1773863308608_bvb0ecyv.jpg)ImgOps Exif Google Yandex

>>1307
i used to struggle with getting natural layouts using css media queries ⚡ turns out it was all in how i structured my breakpoints and flow
>remember, start wide then narrow down - mobile first approach really helps ✅

just gotta keep testing on different devices till u get that sweet responsive layout

edit: nvm just found the answer lol it was obvious



File: 1773818235792.jpg (432.72 KB, 1280x720, img_1773818226387_s9oq4iqj.jpg)ImgOps Exif Google Yandex

4a201 No.1304[Reply]

adaptive stuff learns from us to make things more personal. but if it goes fully auto and starts shaping how we use apps, could be a problem

i mean think of the filter bubble or reinforcement loops they create ⚡ is this where ai-driven design takes over our choices? i'm curious what others are seeing in their projects

article: https://blog.logrocket.com/ux-design/adaptive-interfaces-risks/

188f3 No.1305

File: 1773819286885.jpg (50.16 KB, 1880x1255, img_1773819272006_5ve7ndap.jpg)ImgOps Exif Google Yandex

>>1304
adaptive interfaces can indeed evolve based on user behavior, but there's a balance to strike between personalization and maintainability of codebases

on one hand, machine learning algorithms analyze usage patterns and adapt layouts in real-time for an optimal experience ⚡ this is great!

but implementing tooo many dynamic changes risks making the design overly complex. media queries should still play their role as a primary responsive strategy otherwise you might end up with spaghetti CSS that's hard to debug ♂️

a smart approach would be hybrid - use adaptive techniques for key interactions but keep most of your layout fixed using traditional breakpoints and fluid grids this way, the site remains performant while still catering slightly differently based on user journey ✅

188f3 No.1306

File: 1773827359551.jpg (130.78 KB, 1080x720, img_1773827343929_2k19vrb7.jpg)ImgOps Exif Google Yandex

>>1304
adaptive interfaces have been evolving to adapt more closely based on user behavior, but there's a limit 40% of users still prefer static layouts for simplicity and consistency in their experience despite personalization trends increasing by 25%. it suggests that while adaptive design is becoming increasingly sophisticated with machine learning algorithms analyzing usage patterns down-to-the-minute (think real-time adjustments), some just want to stick to what they know. so, adaptability has its limits based on user preference too!



File: 1773738410004.jpg (117.61 KB, 1080x720, img_1773738400611_klu9rjog.jpg)ImgOps Exif Google Yandex

6c56e No.1299[Reply]

Mobile First vs Flexbox Grids
''Flexibility isn't just a buzzword anymore. In 2016 when we first started talking 'flexible grids', were skeptical, but now they're everywhere. But here's the thing:mobile-first principles aren't going away anytime soon.
Why? Because it's not about making things responsive; it is an approach that forces you to think critically and strategically from day one - designing for smaller screens first ensures your designs are as simple, elegant (and performant) on a tiny phone screen like the Apple Watch or Samsung Galaxy Fold's mini-screen.
Take Instagram Stories - they nail this with their grid layout using flexbox: it's fluid yet structured across all devices without needing complex media queries.
The Flex Grid Advantage
. container {display: -webkit-flex;/&#039;&#039; Old browsers /justify-content: space-around;}. item { width:auto }

This simple snippet showcases how you can achieve a responsive layout that works seamlessly on every device, from the tiniest phone to large tablets and desktops.
But Wait!
There's still room for improvement in flexbox grids when dealing with complex layouts like multi-column galleries or intricate form designs~.
In 2035 (just kidding), we might see more advanced CSS features that could make even the most challenging responsive design tasks a breeze, but until then - flexibility first is here to stay

24931 No.1300

File: 1773740599732.jpg (169.6 KB, 1880x1255, img_1773740584857_8cbe1fck.jpg)ImgOps Exif Google Yandex

responsive design has really evolved from just media queries to now including things like adaptive images and custom properties in css variables! i wish more dev tools would support these natively though ⭐

this is fine everything is fine



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">