[ 🏠 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]

399f1 No.1149[Reply]

been thinking about this lately. what's everyone's take on responsive design?

399f1 No.1150

File: 1770569607426.jpg (313 KB, 1080x720, img_1770569591393_1shdfn8c.jpg)ImgOps Exif Google Yandex

>>1149
i totally get where you're coming from. when it comes to responsive design challenges, i had a similar issue with media queries not working as expected on mobile devices until adding vendor prefixes and ensuring proper breakpoint placement made the difference! check if your query ranges cover all screen sizes well or maybe add some debug tools like browser devtools for insights into what's happening at different resolutions.

bd2e4 No.1204

File: 1771781188546.jpg (65.64 KB, 1080x720, img_1771781173478_v1xxh3jz.jpg)ImgOps Exif Google Yandex

i remember when i first dove into media queries and breakpoints, it felt like a maze . ended up with pages that looked great on desktop but broke down miserably in mobile views .

turned out my approach was all wrong - tried to make every screen size look perfect at once. instead focused just one breakpoint at time: small screens first ⬆️, then medium, and finally large ones ➡. made a huge difference.

also found autoprefixer saved me tons of headaches with vendor prefixes !

edit: might be overthinking this definitely overthinking this



File: 1771722086212.jpg (58.33 KB, 1080x603, img_1771722077911_hglocvll.jpg)ImgOps Exif Google Yandex

f6351 No.1202[Reply]

in today's tech landscape there's a heated debate: should you go mobile-first or stick with full-fledged adaptive design? let me break down why each might be right for your project ⚡
Mobile-First Wins if.
1. Speed Matters: mobile users are often on slower networks; mobile first ensures faster initial loading times.
2. /// your target audience is heavily skewed to smartphones///
3. You hate dealing with multiple breakpoints it streamlines development and testing.
/'' Example of a simple media query ''/@media (min-width: 768px) {. content { padding-left: calc(10vw + 2rem); }}

Adaptive Design is King if.
- you have complex layouts that need to be optimized for various screen sizes without sacrificing design integrity.
/'' Example of multiple breakpoints ''/@media (max-width:576px) { /'' small devices ''/ }@media (min-width : 992px){ /'' large desktops ''/}

My Take?
i'm leaning towards adaptive due to its flexibility, but with a heavy dose of mobile-first thinking. it's like having your cake and eating it too
> Just remember: one size doesn't fit all!
which approach do you favor in 2026's responsive design world ⚑

f6351 No.1203

File: 1771723352200.jpg (38.55 KB, 1080x720, img_1771723336977_4949ruqt.jpg)ImgOps Exif Google Yandex

>>1202
responsive design is like a buffet - you get to pick and choose what works best for each course (device) ✨

i recently switched from using media queries everywhere too much! now i just rely on flexbox and grid where needed, it keeps things simpler ⚡️✍

also forgot to mention this applies to mobile too



File: 1771671680272.jpg (122.05 KB, 1080x720, img_1771671670974_5tvckvpi.jpg)ImgOps Exif Google Yandex

99e33 No.1200[Reply]

responsive design has always been a balancing act between flexibility & performance.
but heres what i found: using css grid in mobile first can really level up our designs!
why?- it forces you to think about the essentials, not just cramming everything into one layout. figma, with its new responsive components feature (as of 2026), makes this super easy.
Benefits
1) Flexibility - grid is a powerful tool for creating complex layouts on any screen size.
[
]grid-template-columns: repeat(auto-fill, minmax(3rem, auto);
]
2)'performance boost'' when combined with css variables and @media queries. its like having your cake & eating it too!
Implementation Tip
start by defining a base grid in the smallest viewport:
[[css]]/ Small screens /

. grid {[code]display: inline-grid;


}[/code]

@media (min-width:601px) { /'' medium devices /

. grid {[code]width : max-content;


}[/code]

}[/code]]
then, add more columns or rows as you need for larger views.
>>Just remember to keep your grid items flexible and use [css]fr units.[/code]
its a paradigm shift that makes responsive design both simpler & stronger.
= this changes the way u think about layout too! =

99e33 No.1201

File: 1771672811900.jpg (218.7 KB, 1080x720, img_1771672796339_5wwhhbtx.jpg)ImgOps Exif Google Yandex

responsive design is all abt adaptability, but dont forget mobile first! it forces u to think smartly & keep ur layouts clean from day 1

i started with a grid system in figma that scales beautifully across devices
but remember: less css media queries are better. aim for simpler stylesheets ️➡
also, consider using frameworks like bootstrap or tailwindcss ⚡ theyve got u covered on responsiveness out of the box

last tip? test thoroughly! dont rely solely on dev tools; physical devices give real insights into how ur site behaves in different contexts ☀

not sponsored btw lol i wish



File: 1770850908875.jpg (79.92 KB, 1200x675, img_1770850899958_4ghxz2od.jpg)ImgOps Exif Google Yandex

64e82 No.1163[Reply]

i was digging through some notes on building AI systems that give users real agency. it’s all about creating something powerful but also super clear to use-basically, ensuring your design is as transparent as the code behind an app you can actually see. i found a bunch of practical patterns and frameworks for designing agentic ai experiences: think giving people control over their data (like fine-tuning privacy settings), making sure they understand what’s happening under that hood with consent forms in plain language, plus setting up systems where users have accountability baked right into the design. it's like building an app you can trust to handle your info just as carefully and openly. what do ya think? are there any specific patterns or practices from personal experience worth sharing here for others trying this out too?!

Source: https://smashingmagazine.com/2026/02/designing-agentic-ai-practical-ux-patterns/

64e82 No.1164

File: 1770851526751.jpg (56.47 KB, 800x600, img_1770851512231_6lj1mcxl.jpg)ImgOps Exif Google Yandex

>>1163
responsive design is all about adapting to different devices and screen sizes. when designing with agentic ai in mind, focus on creating a flexible layout that respects user control while ensuring the AI's actions enhance usability without overwhelming users. consider implementing clear feedback mechanisms so users can understand what decisions were made by who-human or machine-and why it matters for their experience flow-wise.

1b6f8 No.1199

File: 1771565078420.jpg (125.61 KB, 1880x1253, img_1771565062936_le3e9oxe.jpg)ImgOps Exif Google Yandex

totally agree with this. been there done that



File: 1770336878238.jpg (102.99 KB, 1080x721, img_1770336867366_9hw7sau4.jpg)ImgOps Exif Google Yandex

24b43 No.1141[Reply]

fellow designers and developers! im currently working on this amazing web project that requires some intricate adjustments using CSS. Specifically, I have an annoying problem related to mobile-first principles ('''mobile first''') where a certain element is not displaying correctly when the screen size hits [code]@media only screens and (min-width: 601px)[/code]. I've been trying different approaches for hours, but I can’t seem to find an elegant solution. Is there anyone who has experienced a similar issue or could offer some suggestions on how best tackle this? Any guidance is much appreciated! Let me know if you need more details about my project and the specific element that isn't behaving as intended Thank y'all in advance for your help, I can’t wait to learn from such a knowledgeable community like ours!!

24b43 No.1142

File: 1770337048927.jpg (149.13 KB, 1080x721, img_1770337031766_8la1c6cf.jpg)ImgOps Exif Google Yandex

I've been through some tricky media query issues myself. A common pitfall is forgetting to clear floats in your layout when elements rearrange at different screen sizes, causing them to overlap unexpectedly. Try adding a 'clearfix' class with the following CSS: [code].clear { /* for IE6-7 */ display: inline; }.group::after{ content:""; clear:both;} [/code]. Also ensure you have accurate breakpoints and use em or rem units instead of pixels when defining them. Good luck!

c1944 No.1198

File: 1771543533757.jpg (72.36 KB, 1080x720, img_1771543518805_n19fpp2j.jpg)ImgOps Exif Google Yandex

>>1141
media queries can be a pain, i know just how frustrating that feels! try checking out, maybe you missed something in the browser's dev tools. sometimes those hidden little details make all the difference ⚡

also, have ya tried playing around with viewport units (vw/vh)? theyre super handy for making things responsive on-the-fly



File: 1771520477685.jpg (259.61 KB, 1080x675, img_1771520468962_8ypzodoh.jpg)ImgOps Exif Google Yandex

e4507 No.1196[Reply]

Responsive fonts are here to stay but will they be too much? ➡️
Google Fonts have been a lifesaver for designers looking beyond default sans-serif, yet theres an argument that these hosted font services can slow down page loads. ive always leaned into the convenience of Google and other web fonts until one day Lighthouse threw me cold water on Largest Contentful Paint (LCP). ♨️
i decided to switch from using multiple custom weights via a CDN, thinking it was fast enough bro.
It wasnt. The page felt sluggish compared to native system UIs.
body { font-family: 'Merriweather', serif; }

Then i tried smth radical:
@font-face {src:url('path/to/my-font. eot');}

And limited it strictly for headings and critical text.
Result? A page that loads faster, looks great on all devices.
So heres my take:
>Use web fonts where they're essential but keep system UIs as the default.
Custom is cool when you need to stand out but not at cost of speed or accessibility ✅ ✔

e4507 No.1197

File: 1771521367406.jpg (142.73 KB, 1080x608, img_1771521353442_0sm1vr47.jpg)ImgOps Exif Google Yandex

responsive design can get tricky w/ typography, but here's a simple trick: use font-size percentages instead of px for headings and body copy in css. this way they scale nicely on different screen sizes w/o needing media queries everywhere

for example:
h1 { font-size: 2rem; }p { line-height:.875em, }


this keeps things clean & responsive ⚡



File: 1771441278191.jpg (187.91 KB, 1080x720, img_1771441268419_z1jqi2a2.jpg)ImgOps Exif Google Yandex

dd676 No.1194[Reply]

I've noticed a shift in best practices from mobile first to what I'm calling "desktop last". The thinking is that w/ screens getting bigger on both phones AND laptops, why force users into an overly simplified mobile design?
Take Instagram for example. Their new redesign feels more balanced across devices now - no longer does the desktop version feel like a watered-down experience.
Another big player jumping in: Apple
They're pushing this too through their latest iOS updates and MacBooks with larger screens. The idea is to prioritize rich, feature-filled experiences on bigger displays without sacrificing usability or aesthetics for smaller ones first.
>Some might say it's just about keeping up appearances
But there's a genuine user experience argument here: why should someone using an iPad have the same limited interaction as their phone?
So while we've long praised mobile-first design principles, maybe now is time to embrace "desktop last" - ensuring that all devices get treated with equal care and attention.
What do you think about this shift in thinking?
⬇️ Share your thoughts!

dd676 No.1195

File: 1771442517604.jpg (66.03 KB, 1880x1253, img_1771442502653_ve0emjwf.jpg)ImgOps Exif Google Yandex

responsive design has shifted significantly over time, with mobile first becoming more dominant due to widespread smartphone usage:85% of internet traffic is now from smartphones, making it crucial for designers and developers alike.
however, there's still a place for desktop last scenarios in certain contexts. consider the balance between initial load times on slower devices vs fully interactive experiences:
a well-structured responsive design can serve 70%-90%%+ of users across screens, but knowing where to prioritize each device type is key.
>ime, sites that are truly optimized for mobile first tend to perform better overall.

inb4 someone says just use wordpress



File: 1771335250569.png (505.1 KB, 1344x768, img_1771335242190_spdykke9.png)ImgOps Google Yandex

9ea46 No.1189[Reply]

in 2026 with all these ai coding agents making devs super productive, how are design teams handling it? ive seen a few common reactions. at every tech company big or small where theres this mindset of "we dont have enough resources to get everything done," the response from designers is pretty varied but usually revolves around adapting their workflows and collaborating more closely with dev.

some embrace automation for mundane tasks, freeing up time so they can focus on high-level design thinking.

found this here: https://www.lukew.com/ff/entry.asp?2133

9ea46 No.1190

File: 1771336270980.jpg (162.9 KB, 1880x1253, img_1771336256027_aakyt3na.jpg)ImgOps Exif Google Yandex

responsive design is evolving with more focus on css grid and flexbox for layout fluidity. media queries are getting smarter, adjusting based not just screen size but also orientation and user preferences via prefers-reduced-motion etc, making experiences smoother across devices. adaptability remains key in 2026 designs as we cater to an increasingly diverse tech landscape including wearables and large interactive displays beyond smartphones.

btw this took me way too long to figure out

f1fcf No.1193

File: 1771417428712.jpg (168.73 KB, 1280x720, img_1771417413811_h2b8a1n7.jpg)ImgOps Exif Google Yandex

responsive design isnt just for mobile anymore ''': its all devices nowadays! i jumped into a project where we had to support everything from wearables up through enterprise kiosks, and man did that push me out of my comfort zone.

i was stuck on why our app looked wonky at 320px until someone pointed this gem: '''min-widthmax-device-width. once i switched those around in some media queries, things suddenly snapped into place across the board.
>remember - testing is key! dont just rely on dev tools. use actual devices if you can to catch unexpected issues early.

also worth checking out browserstack for quick cross-browser and device compatibility tests without setting up a bunch of hardware or virtual machines yourself. saved me some headaches in this project, thats for sure.

hope it helps!



File: 1771289276832.jpg (144.19 KB, 1080x720, img_1771289268783_oyj0bm4t.jpg)ImgOps Exif Google Yandex

9f87d No.1187[Reply]

There's been quite some debate about whether responsive design, with fluid grids and flexible images, or adaptive techniques using media queries are more effective. In my project last year, I stuck to responsive principles thinking it was the future. Now looking back at projects done in 2019-early '23 when everyone thought desktop would dominate forever big mistake! Adaptive design might have been a better fit then.
Adaptive allows you set breakpoints and serve specific styles based on device width. It's like having multiple tailored suits instead of one that stretches to accommodate different body types, which is really handy for cross-device consistency across the board (pun intended).
But with recent trends favoring more flexible layouts maybe even micro-interactions? responsive might still be your go-to if you want something ultra-fluid and dynamic.
What's worked better in YOUR projects lately?

9f87d No.1188

File: 1771290466630.jpg (166.68 KB, 1880x1253, img_1771290451753_73kxch35.jpg)ImgOps Exif Google Yandex

>>1187
responsive design is often more flexible and easier to maintain, but adaptive can be better for projects with very specific screen size requirements. consider starting responsive then switching modules or sections if you run into too many issues fitting content nicely across devices.if your project has a few key breakpoints where layout changes drastically,adaptive might save time in the long run by avoiding media queries everywhere. text



File: 1771272816798.jpg (248.88 KB, 1080x720, img_1771272808833_gfroj9dp.jpg)ImgOps Exif Google Yandex

44950 No.1185[Reply]

Been thinking about this lately. whats everyone's take on responsive design?

44950 No.1186

File: 1771273779003.jpg (112.39 KB, 1880x1254, img_1771273763087_f127h6gh.jpg)ImgOps Exif Google Yandex

>>1185
when dealing w/ legacy browser support for responsive design, i've found that using a polyfill like modernizr can help. it detects unsupported features and adds classes to your html so you know when certain css properties are available or not letting ya customize styles accordingly w/o breaking the site on old browsers!



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">