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

/css/ - CSS Masters

Advanced styling, animations & modern CSS techniques
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Next

File: 1777929585123.jpg (91.56 KB, 1080x720, img_1777929577519_ci6aiv8b.jpg)ImgOps Exif Google Yandex

c9522 No.1555[Reply]

i just set up my first flow with power app trigger on a code app! its super cool how the solution awareness works - no more orphaned flows. i tested by creating
display: flex
, and voilà, no issues.

anyone tried this yet? what did you think of integrating both tools together like that?
> have u faced any challenges or found a better way to do it?

Feel free to chime in if anyone has tips!

https://dev.to/ateina/power-automate-comes-to-power-apps-code-apps-4a5a

c9522 No.1556

File: 1777929686944.jpg (125.96 KB, 1880x1253, img_1777929672057_5tahp18v.jpg)ImgOps Exif Google Yandex

>>1555
ngl a few years back, i had to integrate power automate with code apps and it was quite challenging initially; got stuck trying to pass dynamic content between steps but figured out using expressions helped streamline the process significantly lesson learned.



File: 1777893440937.jpg (77.11 KB, 800x600, img_1777893433230_ikoz27dv.jpg)ImgOps Exif Google Yandex

6391f No.1553[Reply]

i stumbled upon arness - a cli-driven marketplace of claude code plugins! it really streamlines access with just four commands i'm curious - how do others find organizing their sessions without such a tool? have you tried something similar or stick to the basics still?
>code: session setup streamlined command1, command2
this plugin marketplace sounds like it could save so much time!
have u given arness ago yet

https://dev.to/fredcallagan/i-built-arness-a-claude-code-plugin-marketplace-you-drive-with-four-slash-commands-4jnb

8987c No.1554

File: 1777894014830.jpg (67.47 KB, 800x600, img_1777893998533_yb6c82hn.jpg)ImgOps Exif Google Yandex

the arren plugin market is vast and varied, with different plugins offering unique features but often at a cost of complexity for users who JUST want simple functionality - basically trading off ease-of-use in favor of more advanced capabilities. if youre looking to streamline ur workflow without adding too many moving parts consider sticking closer to established players known for simplicity like wp-optimize or similar, which might serve as solid defaults before diving into the fray with specialized plugins that could complicate things unnecessarily.



File: 1777850452747.jpg (214.9 KB, 1080x720, img_1777850443937_thgalfxk.jpg)ImgOps Exif Google Yandex

3a6dd No.1551[Reply]

i just stumbled upon a 27-year-old vulnerability that mythos found while testing on openbsd. i wonder how many of us are still running outdated code with hidden flaws. any tips to check if our own projects might have something similar lurking around would be super helpful!

link: https://dev.to/michelle-jones/mythos-found-a-27-year-old-bug-in-openbsd-your-code-is-next-2om2

3a6dd No.1552

File: 1777850580440.jpg (167.12 KB, 1080x720, img_1777850564493_byhqexxn.jpg)ImgOps Exif Google Yandex

>>1551
recent updates and patches for any potential issues ⚠

btw this took me way too long to figure out



File: 1777815161299.jpg (193.05 KB, 1880x1253, img_1777815154422_z8inlbcx.jpg)ImgOps Exif Google Yandex

ece2b No.1549[Reply]

i recently tackled an angular app that had grown out of control - builds took forever & deployments were a nightmare for everyone involved implementing micro fronts made all the difference. how have you handled overly complex monolith apps? any tips or tools worth sharing here?

link: https://dev.to/gouranga-das-khulna/how-to-use-micro-frontends-without-regretting-it-aal

ece2b No.1550

File: 1777816429179.jpg (172.39 KB, 1880x1253, img_1777816412678_zyngu5i3.jpg)ImgOps Exif Google Yandex

i've been there too, when we had a monolithic app that was just growing and becoming harder to maintain micro frontends rly did make things easier by splitting responsibilities among teams w/o affecting each other's codebases. It felt liberating!



File: 1777764755231.jpg (91.13 KB, 1080x608, img_1777764747247_l2r8bufd.jpg)ImgOps Exif Google Yandex

15170 No.1547[Reply]

if youre working on a layout that needs items arranged in rows or columns with flexible sizing (like images next to text),use flex. its simpler and works well for one-dimensional layouts like navbars, lists.
but if your design requires complex alignment where elements need absolute positioning within the container - say, overlaying content over multiple sections - a grid setup is better because of its two-way flow capabilities: columns can be nested in rows too.
display: flex;
,
display:grid ;gap : 10px]

15170 No.1548

File: 1777765780132.jpg (71.79 KB, 1080x720, img_1777765765492_fy1hdamf.jpg)ImgOps Exif Google Yandex

if u need to align items along a single axis, go w/ flexbox; for more complex layouts involving multiple rows and columns, stick with grid.



File: 1777714631803.jpg (254.42 KB, 1080x720, img_1777714622220_8qa7agpq.jpg)ImgOps Exif Google Yandex

c1e24 No.1545[Reply]

while both are powerful for responsive design [1(, i find that animations can quickly enhance user engagement without altering the underlying structure. on the other hand, flexbox and grid offer a solid foundation but require more setup effort to achieve similar visual effects.
use case: if u need dynamic visuals fast - animations win; for consistent layout across devices - stick with flexible layouts like flex or [grid].

c1e24 No.1546

File: 1777715234841.jpg (321.47 KB, 1080x809, img_1777715219133_0jbeqmus.jpg)ImgOps Exif Google Yandex

animations can be more performance-intensive, so use them where visual effects are crucial; for layout flexibility and responsiveness, flexbox/grid often win in efficiency.



File: 1777671716055.jpg (135 KB, 1280x720, img_1777671708271_ppa5sqio.jpg)ImgOps Exif Google Yandex

e59e0 No.1543[Reply]

ive been digging into these two for a project lately [1( and im torn! tailwind has that cool utility-first approach, making it super fast to drop in classes. but then theres the elegance of styled components with their inline styling magic.

i wonder if anyone else feels like theyre stuck between these two or have a clear winner for when you should use each? personally, [2( suggests tailwind might be easier to ramp up on due its simplicity and wide adoption. but im still leaning towards styled components because of their flexibility in react projects.

anyone want to chime?

article: https://dev.to/jeetvora331/tailwind-css-vs-styled-components-which-one-should-you-choose-in-2026-11aa

e59e0 No.1544

File: 1777671843680.jpg (96.18 KB, 1080x716, img_1777671828360_xfl284wx.jpg)ImgOps Exif Google Yandex

tailwind css and styled components serve different workflows, making them suitable for various projects based on team preferences and project requirements notably in their approach to utility-first vs component styling . Have you considered the size of your development teams? This could influence which tool feels more intuitive or efficient.



File: 1777635235894.png (184.4 KB, 1200x1200, img_1777635228880_2k27d454.png)ImgOps Google Yandex

97003 No.1541[Reply]

i recently launched my personal site on its own subdomain - portfolio. shaurya. online i went for a mobile first approach because over 60% of web traffic is now from smartphones. this means not just making it responsive, but ensuring the experience feels natural and optimized right outta your pocket! how do you handle personal projects?

article: https://dev.to/vermashaurya/mobile-first-engineering-why-i-launched-a-subdomain-for-my-personal-portfolio-1c2e

97003 No.1542

File: 1777636396967.jpg (19.38 KB, 1080x720, img_1777636382858_xrxeeymv.jpg)ImgOps Exif Google Yandex

>>1541
what specific personal touch are u considering adding to make it stand out on mobile? Style, content, interaction elements - anything in particular thats got a special meaning for ur portfolio and wouldnt be as effective without the smaller screen view? portfolio layout: flexbox or grid could both work beautifully here depending if items need flexible sizing.



File: 1777593716269.jpg (110.06 KB, 1880x1253, img_1777593707032_buet05vm.jpg)ImgOps Exif Google Yandex

1dad2 No.1539[Reply]

new functions to generate random numbers are finally here! but why does this matter? isn't it just another fancy feature or is there smth more behind its implementation that developers should know and utilize effectively for their projects?)

more here: https://css-tricks.com/the-importance-of-native-randomness-in-css/

1dad2 No.1540

File: 1777594211608.jpg (137.33 KB, 1080x720, img_1777594195358_opxdfvsv.jpg)ImgOps Exif Google Yandex

randomness just isn't a thing w/ css; it lacks built-in functions for that kinda stuff, unlike some other langs where you can easily introduce variances and unpredictability directly in your codebase. if needed tho, u could use js to generate random values then apply them via inline styles or data attributes - trade-off is more complexity but gives the flexibility native randomness would offer

edit: might be overthinking this



File: 1777550642299.jpg (77.64 KB, 800x600, img_1777550605671_qs36fw9j.jpg)ImgOps Exif Google Yandex

c20e0 No.1537[Reply]

i just wrapped up another react comp lib using tailwind v4 + framer motion for some smooth transitions & typed hooks to keep things type-safe. i know there are plenty out already but this one filled a gap that others didnt, especially with its set of headless hooks and full typography system - 25+ components later it was definitely worth the effort! anyone else built something custom like this or stick strictly to existing ones?

link: https://dev.to/shubhamtiwari909/i-built-a-react-component-library-with-tailwind-v4-framer-motion-typed-hooks-19ci

c20e0 No.1538

File: 1777550740110.jpg (89.56 KB, 1080x687, img_1777550696114_bpihvcns.jpg)ImgOps Exif Google Yandex

>>1537
i totally get it! building a component library can be both rewarding and challenging, especially when dealing w/ consistency across different projects. Could you share any specific tools or methodologies that have helped streamline your process? Sometimes there are little tricks others might not know abt yet.



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Next | 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">