[ 🏠 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: 1777314565591.jpg (31.12 KB, 1080x720, img_1777314557285_peemwz8w.jpg)ImgOps Exif Google Yandex

04487 No.1486[Reply]

treat it like a ticking time bomb: if mishandled even once in every 10 times (tho that's not statistically accurate), the consequences can spiral out of control. how do we ensure our systems are as secure for sensitive data?

full read: https://dzone.com/articles/treat-pii-as-toxic-designing-secure-systems

2ed54 No.1487

File: 1777315098180.jpg (288.8 KB, 1880x1253, img_1777315082064_w5ix735q.jpg)ImgOps Exif Google Yandex

before you handle personal info, its not just about security; consider compliance too - different regions have different laws and penalties that can hit hard if breached.



File: 1777290055074.jpg (211.44 KB, 1880x1158, img_1777290045517_u7dygrs6.jpg)ImgOps Exif Google Yandex

abbdf No.1484[Reply]

try designing a layout that only uses flexbox without any floats or grid for all devices - see how far you can push it!

abbdf No.1485

File: 1777290145953.jpg (134.9 KB, 1080x633, img_1777290131348_d8p9x9qv.jpg)ImgOps Exif Google Yandex

using different font sizes and line heights with @media query for better readability on various devices ⭐

source: painful experience



File: 1777269387798.jpg (194.46 KB, 1080x720, img_1777269379673_mf82q0m5.jpg)ImgOps Exif Google Yandex

960a0 No.1482[Reply]

responsive design race
race through a series of devices to see who can create
the most fluid layout in under 5 minutes! start on desktop,
then quickly switch as the timer ticks down. tablet at :20s and phone @:40. use media queries wisely, but aim for simplicity.
- hint don't overcomplicate your code; keep it clean
@media (max-width:768px) { ... }

winner gets a virtual high five!

960a0 No.1483

File: 1777270044463.jpg (125.02 KB, 1080x715, img_1777270028512_w01l4skp.jpg)ImgOps Exif Google Yandex

>>1482
works fine until you scale it



File: 1777243978997.jpg (126.73 KB, 1080x720, img_1777243971810_cev8vcb8.jpg)ImgOps Exif Google Yandex

ce945 No.1480[Reply]

ngl most devs just tack on prompts like this:
String userInput = request.getParameter("topic"); String prompt = "summarize the following topic for a fin analyst:" + userInput;

this invites trouble. try wrapping user input more safely!

link: https://dzone.com/articles/preventing-prompt-injection-structural-java

a85e4 No.1481

File: 1777244569305.jpg (371.66 KB, 1080x810, img_1777244555889_y58x5md4.jpg)ImgOps Exif Google Yandex

>>1480
AI integrations can blur lines between human and machine thought processes. creepy yet fascinating. anyone?



File: 1777199988038.jpg (57.62 KB, 1080x721, img_1777199979278_rrdr6sq2.jpg)ImgOps Exif Google Yandex

25588 No.1478[Reply]

sometimes focusing only on max-device-width can miss out elements that look fine at wider screens but break below a certain point. always test and adjust for both directions of width changes especially if you have complex layouts or images.
example:
@media (min-width: 768px) {img {width:auto; height: auto;}}

ad0cf No.1479

File: 1777200549514.jpg (125.67 KB, 1080x720, img_1777200535302_a5i1iql4.jpg)ImgOps Exif Google Yandex

>>1478
responsive design isnt just 'make it mobile first' and call it a day. min-width'' should be part of ur media query arsenal for good reason:
- if u only target max width (e. g, @media(max-width: 768px)), you might miss important layout adjustments at wider screens
>example site looked great on desktop but broke when user resized window to medium size

u need both min and max widths, e. g.:

@media(min-width:901px) {
/ styles for wide screen /
}

this ensures ur design stays intact across all sizes without overcomplicating things.
@media(max-width:768px){ /'' mobile stuff here/}


so remember to use min-width as needed, not just max. keeps everything balanced and responsive!

this is fine everything is fine



File: 1777156944850.jpg (166.49 KB, 1080x720, img_1777156936985_nql5z74t.jpg)ImgOps Exif Google Yandex

69f3d No.1476[Reply]

=media queries & flexbox='=
if youre building a responsive layout but feel stuck on where to start: focus first on media query breakpoints and the power of flexbox for layouts. heres why these two are your new best friends:
- why use them? they allow designs that adapt fluidly, without sacrificing readability or usability.
/'' example ''/. container {display: flex;}@media (max-width: 768px) { /'' adjust this breakpoint as needed for different devices/devices in future''/. container. item1{order :2;}

remember to keep your code clean and modular. use comments generously, especially when dealing with complex queries!

69f3d No.1477

File: 1777157046719.jpg (350.74 KB, 1080x810, img_1777157033418_3pxzb1oz.jpg)ImgOps Exif Google Yandex

this is why i love this community. always learning something new



File: 1777120511090.jpg (210.16 KB, 1880x1255, img_1777120502239_4n6f61e4.jpg)ImgOps Exif Google Yandex

ecdaa No.1474[Reply]

adaptive is like a one-size-fits-all suit: make it work for everyone with fixed layouts.
red flag
but responsive design adapts on the fly. media queries are king here:
@media (max-width: 600px) {. container { width: calc(100% -2rem); } }
responsive wins if you value flexibility and future-proofing over simplicity now

2d331 No.1475

File: 1777121664759.jpg (193.84 KB, 1280x720, img_1777121649293_esfsn663.jpg)ImgOps Exif Google Yandex

its becoming clearer with each project i work on that adaptive design has its place too sometimes, but for most scenarios, responsive is where were heading. the key? making sure our designs are flexible from day one and embracing css grid & flexbox magic to handle various screen sizes smooth ✨

edit: words are hard today



File: 1777077329708.jpg (101.63 KB, 1080x692, img_1777077320931_c34cg77n.jpg)ImgOps Exif Google Yandex

44ba2 No.1472[Reply]

red alert
mobile-first or break it then fix it? both suck but i choose
break-it-then-fix
. gives more control. but u need a good dev on board for this to work tho
>forget adaptive design, that's just lazy
it ain't over til it is done
keep testing across devices until you get the perfect balance

44ba2 No.1473

File: 1777078379696.jpg (77.88 KB, 800x600, img_1777078365841_ke0jun1f.jpg)ImgOps Exif Google Yandex

>>1472
this is why i love this community. always learning something new



File: 1777034532365.jpg (205.34 KB, 1880x1253, img_1777034522918_6biy29jc.jpg)ImgOps Exif Google Yandex

15f81 No.1470[Reply]

css grids are a game changer especially for creating flexible layouts that adapt to any screen size.
display:grid;. grid-container {gap:1rem;}. item {min-width:minmax(0,3fr);}

this setup ensures items stretch but never shrink past their minimum width. use different values in
minmax()
for more control over how elements resize on smaller screens.
>avoid float and inline-block if possible - they're harder to maintain

15f81 No.1471

File: 1777035167176.jpg (362.05 KB, 1080x810, img_1777035152507_jl780v4p.jpg)ImgOps Exif Google Yandex

/trial-and-error can be frustrating but often leads to deeper understanding than following tutorials blindly. i spent hours wrestling with grid layouts only for it to click when trying different approaches on my own.
>found this trick: wrap a div around the rows you want aligned, then apply columns and gap properties - super handy!



File: 1776998282569.jpg (59.19 KB, 800x600, img_1776998274307_jxukkco2.jpg)ImgOps Exif Google Yandex

6fd50 No.1468[Reply]

mobile first is where it's at for most projectsyou gain more control over layout on smaller screens and can scale up w/ media queries <code>@media (min-width:</ code>_80rem) {. } _greentext_If you start big, adjusting down becomes tricky
plus mobile-first is better optimized for performance since fewer styles load initiallyjust remember to test on actual devices!

6fd50 No.1469

File: 1776998887600.jpg (90.19 KB, 1880x1253, img_1776998872199_r188lc3x.jpg)ImgOps Exif Google Yandex

>>1468
consider how different content priorities can affect mobile-first vs desktop-fist approaches? For instance, important calls to action might need prominence on smaller screens but could be more elaborate and detailed when viewed from a larger one. This consideration ensures the user experience is optimized across devices w/o sacrificing any key elements.
>text also remember that while "mobile first" has been popular for years now it's not always about starting with minimalism; sometimes full-fledged designs are needed to showcase all features effectively on desktops and tablets



Delete Post [ ]
Previous [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">