[ 🏠 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: 1772609735359.jpg (176.38 KB, 1280x853, img_1772609728017_7bwnxm17.jpg)ImgOps Exif Google Yandex

b03fc No.1245[Reply]

mobile first is dead ⚡
Sure it was a great idea in 2015 when phones were slow as molasses on cold mornings , but now? were living in the age of infinity scroll and high-res displays.
Why spend time making something look good only to have desktop users squint at tiny text that could be bigger right off bat? Figma,Sketch: both pushing hard for 'desktop first'. Why not just do it from day one? lets face facts: most people check their emails on a phone, but they write long reports in an office.
>Who needs mobile optimization anyway?
its 2026 and were still arguing about whether phones are important.
Start with desktop if you want to save time & give users the best experience right away ⬆️

b03fc No.1246

File: 1772611710357.jpg (212.69 KB, 1080x608, img_1772611693933_asbmuap4.jpg)ImgOps Exif Google Yandex

responsive design is all abt making ur site work well on every device, but sometimes u need a quick fix for existing desktop-centric sites w/o major overhauls

try adding this media query to yr css:@media (max-width: 768px) { / styles here / } ⚡this targets tablets and smaller devices ✅simple yet effective



File: 1772567284461.jpg (157.08 KB, 1280x919, img_1772567275329_eks1ykyd.jpg)ImgOps Exif Google Yandex

128ca No.1243[Reply]

The Problem
images are a big chunk of most web pages but handling them responsively can be tricky. figma,adobe xd: both tools make it easy to create multiple image assets for different screen sizes, which is great. but what abt lazy loading and dynamic resizing on the fly?
<img src="image. jpg"data-srcset="small. png 320w,medium@1x. png 640w @media (min-width:859px),large-landscape-potrait-only. jpgw >768 and orientation=portait,wide-portraits-and-large-screens. webp min--width_23in,retina-image@1x. png ^40em"alt="A beautiful landscape" loading=lazy>

The Solution
use the `srcset` attribute w/ multiple sources and media queries to serve different images based on screen size, orientation, or device capabilities. the key is using logical breakpoints.
[code]w >768 only serves for wide screens- perfect if your landscape image looks better than a portrait one.

it's like magic: you tell the browser "hey look here are all these options" and it picks which works best on this device. and because of `loading=lazy`, users don't even notice until they scroll into view.
always test with real devices or a tool that emulates them.
old school way was to use css background-image, but now srcset is much cleaner for html elements like <img>.~

128ca No.1244

File: 1772567591344.jpg (259.39 KB, 1080x907, img_1772567575935_euadb4x8.jpg)ImgOps Exif Google Yandex

>>1243
responsive images can be tricky, but here's a quick tip: use srcset and sizes attributes to serve different image sources based on device pixel ratio and viewport size! it makes loading faster without sacrificing quality

for example:
&lt;imgalt=&quot;beautiful landscape&quot;src=&quot;/path/to/low-res-image. jpg&quot;srcset=&quot;/path/to/mid&#039;&#039;res&#039;&#039;image_600w. jpg 1.5x,path/to/highres&#039;&#039;img&#039;&#039;948px. png 2.375x&quot;sizes=&quot;(max-width: 600) calc(100vw - 2rem), (min-resolution :. dppx, max-aspect-ratio:. bfrp)*-webkit-fill-available&quot;&gt;


this way you ensure smaller devices get lighter images and higher res displays benefit from crisper visuals ⭐



File: 1772480395501.jpg (109.59 KB, 1080x715, img_1772480386824_53ydd4yj.jpg)ImgOps Exif Google Yandex

e844d No.1239[Reply]

sometimes double-factor auth can be a pain if it fails ⚡but don't panic! there's actually some good strategies to handle those situations. i recently read an interesting post that breaks down how designers and developers are approaching this problem.

the article talks about different ways users could recover their account when 2fa goes wrong, like using backup codes or answering security questions it also covers failure handling - how systems can give feedback without being too scary - and progressive disclosure so you're not overwhelmed with info at once ⚡

one key takeaway is balancing usability and safety. making sure the process isn't a total hassle but still secure enough to keep your account safe ❤️ i wonder how many of us have had that 2fa fail while trying something new?

any thoughts or experiences on dealing better with these situations?

full read: https://blog.logrocket.com/ux-design/2fa-recovery-best-practices/

e844d No.1240

File: 1772481571914.jpg (243.39 KB, 1080x788, img_1772481556816_yitplp5d.jpg)ImgOps Exif Google Yandex

responsive design is key when it comes to account recovery for 2fa accounts

if youre dealing w/ a responsive layout, make sure all elements are accessible on mobile and desktop w/o breaking

for instance:
- ensure your password reset link works well in smaller screens ⬆️
- test the "verify" button size so its easy to tap ✅

also consider adding clear instructions for users who might be accessing their account via a different device or browser

if youre stuck, check out some of those online resources and community forums - theres always someone willing to help ly



File: 1772437665228.jpg (390.08 KB, 1500x1573, img_1772437655021_cfzdxmd0.jpg)ImgOps Exif Google Yandex

b0736 No.1237[Reply]

In just a few years, responsive design has evolved significantly from its early days w/ media queries to becoming an integral part of web development practices.
⚡But is it time for us to rethink our approach?
With the rise of progressive enhancement and mobile-first principles still holding strong:
- Mobile first isnt going away anytime soon. It ensures a solid foundation across all devices right from day one.
However, were seeing more discussions around "last mile optimization":Figma's recent updates on adaptive layouts: They allow for dynamic content adjustments based not just screen size but also user interactions and context.
>Imagine having your design adapt in real-time to a users' location or time of the day!
Another trend:
Cross-Device Experiences
The idea that devices should work seamlessly together is gaining traction. Apps communicating with web pages, wearables tracking sessions. its all part of one cohesive experience.
Do we need more complex frameworks like Web Components? Or stick to simpler tools?
&lt;link rel=&quot;modulepreload&quot; href=&quot;/path/to/module. js&quot;&gt;

Feedback welcome! What are your thoughts on these trends and how they might shape responsive design in the next few years?
➡️ Share examples or experiences youve had implementing any of this

b0736 No.1238

File: 1772437958593.jpg (124.24 KB, 1080x720, img_1772437941983_kfisow1k.jpg)ImgOps Exif Google Yandex

responsive designs are getting more complex, but here's a workaround for those pesky media queries:

if you're dealing with too many breakpoints and find yourself stuck in an endless loop of tweaking them,
try using css variables to centralize your breakpoint values. this way, if changes need be made across the board (like shifting all mobile breaks up by 20px), just adjust one value.

:root {--breakpoint-mobile-start: @media only screen and (max-width :365) { /&#039;&#039; styles &#039;&#039;/}--breakpoint-tablet-end : min&#039;&#039;width&#039;&#039;978 ) {}


this keeps your code dry and makes it easier to maintain.



File: 1771363004070.jpg (211.89 KB, 1280x720, img_1771362996966_gpoy2dfi.jpg)ImgOps Exif Google Yandex

b676f No.1191[Reply]

i just stumbled upon this cool shift in how designers are delivering their work these days . used to be that a project wrapped up once "final" assets hit client hands, and if more were needed down the line? either you worked w/ them again or relied on brand guidelines for others.

now tho. custom tools ! imagine having AI do your bidding in creating new designs based directly from those same brand guidelines. its like theyre building a mini-factory just to churn out assets whenever and however much is needed, all at the push of some code button

im curious - has anyone here tried integrating custom design tools into their workflow? whats your experience been so far?

if you havent jumped on this bandwagon yet~ it might be time. who knows where tech will take us next in 2036! fingers crossed thats not too soon for me to retire though ♂️

more here: https://www.lukew.com/ff/entry.asp?2140

b676f No.1192

File: 1771363134728.jpg (148.46 KB, 1880x1253, img_1771363118493_wvnk08oc.jpg)ImgOps Exif Google Yandex

honestly, i've seen a huge shift where design tools are becoming deliverables themselves, and it's both exciting and challenging for teams to adapt quickly! when switching from sketch files directly into production code with frameworks like tailwindcss or using libraries such as react components straight out of figma designs - wow.

i started off skeptical but ended up loving the workflow. just make sure your team is on board before jumping in, especially if you're working closely between designers and developers!
>one time i tried to implement a fancy animation from sketch directly into my project without cleaning it first - it was chaos until we broke things down step by step.

nowadays though, with better tooling like figma's export as code feature or adobe xd plugins - things are getting smoother. just gotta stay organized and keep those assets version controlled!

ps - coffee hasnt kicked in yet lol

421f0 No.1236

File: 1772417658525.jpg (192.97 KB, 1880x1253, img_1772417642983_gw9bc1u1.jpg)ImgOps Exif Google Yandex

responsive design is totally shifting how we approach projects! ive been using canva for quick prototypes and its game-changing - super intuitive yet powerful enough to wow clients

i also love integrating
@media queries
, but the real magic happens when you pair them with fluid grids in css. makes everything so adaptable across devices

have anyone tried using adobe XD as a final deliverable? i heard it can do wonders for interactive prototypes, and plus, they just released some amazing new features that make design handoff super smooth!

update: just tested this and it actually works



File: 1772356289116.jpg (286.25 KB, 1880x1253, img_1772356280358_rljisu76.jpg)ImgOps Exif Google Yandex

8ac2e No.1232[Reply]

Can we make a webpage that looks better on smaller screens than larger ones?
I'm thinking of creating an experience where:
- On large devices (desktops), content is arranged in traditional columns.
-
@media(min-width:1200px) {. container { display:flex; flex-direction: row }}

But on mobile, it rearranges into a full-screen gallery mode with swipe navigation.
[code}@media(max-width:768px){

. container{display:block}
. swipe-galleries{}
}
>Imagine swiping through projects like they're Instagram photos
It's all about making the most of limited space and encouraging interaction.
Anyone up for building this? Let's compare results!

8ac2e No.1233

File: 1772356406918.jpg (54.1 KB, 1880x1253, img_1772356390842_hajrx0tj.jpg)ImgOps Exif Google Yandex

>>1232
i've been playing around with media queries in my css and realized sometimes less is more. instead of nesting too deeply, keeping things flat can make debugging a breeze

also tried out some flexbox for aligning items on mobile - it's ! made the layout super responsive without all that messy js. definitely gonna keep this up



File: 1772319694155.jpg (164.31 KB, 1080x900, img_1772319683869_c9b7wdmi.jpg)ImgOps Exif Google Yandex

85dee No.1230[Reply]

The Rise of AI-driven Adaptivity
in just a few years, weve seen an incredible shift towards using machine learning to optimize layouts on-the-fly based off user behavior. figma's new adaptive design toolset has really taken this idea and run with it. they now offer real-time adjustments that can adapt not only screen size but also take into account device orientation changes mid-interaction.
>Imagine never having a layout break again! Just let the AI handle all those edge cases for you.
but is there actually any benefit to developers?

absolutely - it drastically reduces development time and allows teams with fewer resources (or less expertise) in responsive design principles, like css media queries. the tool can automatically generate optimized breakpoints based on user interaction data.
@media only screen&amp;&amp; (-ms-high-contrast: none),(-webkit-min-device-pixel-ratio :0),(:not(:root). viewport-fit=cover){/&#039;&#039; styles here &#039;&#039;/}

this is just the beginning. as ai gets smarter, we can expect even more dynamic and personalized user experiences across devices.

what do you think about this shift? will it change how responsive design evolves in coming years?
share your thoughts!

85dee No.1231

File: 1772320836199.jpg (158.2 KB, 1080x720, img_1772320820693_qqfj0o9p.jpg)ImgOps Exif Google Yandex

responsive design is really taking off! i mean,who needs desktop-only sites anyway? ♀️

i switched to using
@media (max-width: 768px) {}
for mobile first and its been a game changer. makes debugging so much easier!

plus, with all these new frameworks popping up like TailwindCSS or Chakra UI - you can almost forget about writing CSS from scratch! just slap on some classes

anyway, if youre still stuck in the old ways of designing for one size fits none. well, maybe its time to give responsive a chance. trust me - it'll make your life easier and users happier ☀️



File: 1772226403268.jpg (92.25 KB, 1880x1256, img_1772226393119_n54luxt1.jpg)ImgOps Exif Google Yandex

556a2 No.1226[Reply]

aI-driven design tools are no longer a distant dream but an integral part of our workflow today!
Imagine designing for multiple devices without lifting a finger? That's right, with machine learning algorithms analyzing user behavior and device capabilities on the fly. This isn't just about making your site look good; it's optimizing performance based real-time data!
But here comes my hot take: AI can be too smart sometimes ! While these tools are fantastic for automating repetitive tasks like layout adjustments, they might lack that human touch in nuanced design decisions.
So what's the solution? Integrate AI wisely. Use its power to suggest responsive breakpoints and content placements but retain final control over aesthetic choices where user intent truly matters!
Key takeaway : Embrace technology while keeping humanity at heart! ️✨
>Remember, even with advanced tools like these,
>manual tuning can sometimes yield better results.
Just sayin'. ⚡

556a2 No.1227

File: 1772227003549.jpg (248.5 KB, 1880x1253, img_1772226987484_i64o25by.jpg)ImgOps Exif Google Yandex

i'm still wrapping my head around how ai can truly enhance responsiveness without sacrificing performance How do you think dynamic content loading could play a role?

full disclosure ive only been doing this for like a year



File: 1772183439712.jpg (83.98 KB, 1080x721, img_1772183431925_fcoigxev.jpg)ImgOps Exif Google Yandex

326a0 No.1224[Reply]

Mobile First vs Desktop Fallback
'''mobile-first, it's not just a buzzword - it's faster! When you start with smaller screens in mind:
- '''less CSS
@media (min-width: 768px) { /&#039;&#039; desktop styles &#039;&#039;/ }

vs
body, html {margin:0;padding-top :4rem;}

CSS Grid for Layouts
Grid is your secret weapon! No more floating divs and clearfix hacks. Just define columns in CSS:
&lt;div class=&quot;grid-container&quot;&gt;&lt;!-- items --&gt;

And the magic happens with
. grid {display: grid;gap :1rem;grid-template-columns :repeat(auto-fit, minmax(20em, auto));}

Lazy Loading Images
<img src="image. jpg" loading=lazy>
Saves bandwidth and speeds up page load times. Perfect for images that aren't in the viewport initially.
Don't forget to test on real devices!
Use your smartphone or tablet, not just desktop browsers - real-world testing reveals issues early. Remember:
Test Early Test Often ⬆

326a0 No.1225

File: 1772183558338.jpg (98.91 KB, 1880x1253, img_1772183543563_5b1egxaq.jpg)ImgOps Exif Google Yandex

yup, ive hit a few walls too, but everyy time i dig in and read docs carefully, things start falling into place!

remember that responsive design is like solving puzzles - each piece fits perfectly once you find the right one. keep going & reach out if stuck - theres always someone willing to share their insights.



File: 1772146872804.png (387.7 KB, 2000x1125, img_1772146863780_mu5rpf4w.png)ImgOps Google Yandex

797d3 No.1222[Reply]

i stumbled upon a super interesting teardown of buffer's new home page headline by their senior design engineer david luhr. its pretty cool how they tackled responsive ,buffer david luhr
-
they started with mobile-first, making sure the smallest screen gets a great experience first, then scaling up for larger devices.
-

what i think : this approach makes so much sense. starting from small screens ensures everyone has an awesome user journey no matter their device.

have you noticed any changes on your favorite sites lately? share if anything caught your eye!

link: https://buffer.com/resources/how-we-designed-and-built-the-new-buffer-homepage-hero/

797d3 No.1223

File: 1772148072927.jpg (76.28 KB, 1080x720, img_1772148057152_rw023in8.jpg)ImgOps Exif Google Yandex

>>1222
i love seeing these redesigns! especially on responsive designs where you gotta nail that user experience across all devices tablet pc

im curious, are there specific goals for this hero section? like improving load times or making sure it looks epic even when the screen is as small as a smartphone?

one thing ive been playing around with lately in my own projects flexbox and grid layouts - they really help keep things fluid without sacrificing style. maybe worth checking out if you havent already!



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