quirksmode.org

VN:F [1.9.22_1171]
Rating: 7.5/10 (2 votes cast)

Prime source for browser compatibility information on the Internet.

New business wanted

30 September 2021 @ 10:22 am

Last week Krijn and I decided to cancel performance.now() 2021. Although it was the right decision it leaves me in financially fairly dire straits. So I’m looking for new jobs and/or donations. Even though the Corona trends in NL look good, and we could probably have brought 350 people together in November, we cannot be certain: there might be a new flare-up. More serious is the fact that it’s very hard to figure out how to apply the Corona checks Dutch government requires, especially for non-EU citizens. We couldn’t figure out how UK and US people should be tested, and for us that was the straw that broke the camel’s back. Cancelling the conference relieved us of a lot of stress. Still, it also relieved me of a lot of money. This is the fourth conference in a row we cannot run, and I have burned through all my

position: sticky, draft 1

8 September 2021 @ 5:44 pm

I’m writing the position: sticky part of my book, and since I never worked with sticky before I’m not totally sure if what I’m saying is correct. This is made worse by the fact that there are no very clear tutorials on sticky. That’s partly because it works pretty intuitively in most cases, and partly because the details can be complicated. So here’s my draft 1 of position: sticky. There will be something wrong with it; please correct me where needed. The inset properties are top, right, bottom and left. (I already introduced this terminology earlier in the chapter.) h3,h4,pre {clear: left} section.scroll-container { border: 1px solid black; width: 300px; height: 250px; padding: 1em; overflow: auto; --text: 'scroll box'; float: left; clear: left; margin-right: 0.5em; margin-bot

Breaking the web forward

12 August 2021 @ 3:19 pm

Safari is holding back the web. It is the new IE, after all. In contrast, Chrome is pushing the web forward so hard that it’s starting to break. Meanwhile web developers do nothing except moan and complain. The only thing left to do is to pick our poison. blockquote { font-size: inherit; font-family: inherit; } blockquote p { font-size: inherit; font-family: inherit; } Safari is the new IE Recently there was yet another round of “Safari is the new IE” stories. Once Jeremy’s summary and a short discussion cleared my mind I finally figured out that Safari is not IE, and that Safari’s IE-or-not-IE is not the worst problem the web is facing. Perry Sun argues th

Custom properties and @property

21 July 2021 @ 1:18 pm

You’re reading a failed article. I hoped to write about @property and how it is useful for extending CSS inheritance considerably in many different circumstances. Alas, I failed. @property turns out to be very useful for font sizes, but does not even approach the general applicability I hoped for. Grandparent-inheriting It all started when I commented on what I thought was an interesting but theoretical idea by Lea Verou: what if elements could inherit the font size of not their parent, but their grandparent? Something like this: div.grandparent { /* font-size could be anything */ } div.parent { font-size: 0.4em; } div.child { font-size: [inherit from grandparent in some sort of way]; font-size: [yes, you could do 2.5em to restore the grandpar

Let’s talk about money

29 June 2021 @ 11:23 am

Let’s talk about money! Let’s talk about how hard it is to pay small amounts online to people whose work you like and who could really use a bit of income. Let’s talk about how Coil aims to change that. Taking a subscription to a website is moderately easy, but the person you want to pay must have enabled them. Besides, do you want to purchase a full subscription in order to read one or two articles per month? Sending a one-time donation is pretty easy as well, but, again, the site owner must have enabled them. And even then it just gives them ad-hoc amounts that they cannot depend on. Then there’s Patreon and Kickstarter and similar systems, but Patreon is essentially a subscription service while Kickstarter is essentially a one-time donation service, except that both keep part of the money you donate. And then there’s ads ... Do we want small content creators to remain dependent o

Inherit, initial, unset, revert

2 June 2021 @ 10:55 am

Today we’re going to take a quick look at a few special CSS keywords you can use on any CSS property: inherit, initial, revert, and unset. Also, we will ask where and when to use them to the greatest effect, and if we need more of those keywords. The first three were defined in the Cascading Level 3 spec, while revert was added in Cascading Level 4. Despite 4 still being in draft revert is already supported. See also the MDN revert page, Chris Coyier’s page, and my test page inherit The

aspect-ratio

19 May 2021 @ 10:35 am

This week we’ll take a look at the new aspect-ratio declaration and its use. Una Kravets wrote the introductory article, but there are some additional technical points to be made. I also wrote a little fallback that you might use if you need aspect-ratio right now. At the time of writing aspect-ratio is supported by Chrome 90, by Safari Technology Preview, and by Firefox 88 if you set the aspect-ratio flag in about:config. You need one of these browsers to see the examples below — except for the fallback, which should work in all browsers that support custom properties. .inner-box { border: 0; outline: 1px solid black; background-size: contain; background-position: center; background-repeat: no-repeat; background-color

aspect-ratio and grid

11 May 2021 @ 12:42 pm

I’m currently investigating the new aspect-ratio declaration and plan to write an article about it. However, I got stuck on aspect ratios in a grid context. Chrome/Safari and Firefox do something different here, and I understand neither approach. So I hope I can get some help. aspect-ratio is currently supported by Chrome 90, by Firefox 88 with the correct flag enabled, and by Safari Technology Preview. I tested mostly in the first two — for complicated reasons I cannot install STP right now, but a kind Twitter follower sent me a few screenshots. It behaves as Chrome. First, a general remark. aspect-ratio is intentionally a fairly weak declaration. It gives way if other constraints on boxes make the requested aspect ratio impossible. Take this example: .my-box { width: 100px; height: 50px; aspect-ratio

Two options for using custom properties

4 May 2021 @ 2:16 pm

Recently I interviewed Stefan Judis for my upcoming book. We discussed CSS custom properties, and something interesting happened. We had a period of a few minutes where we were talking past one another, because, as it turns out, we have completely opposite ideas about the use of CSS custom properties. I had never considered his approach, and I found it interesting enough to write this quick post. Option 1 Take several site components, each with their own link and hover/focus colours. We want to use custom properties for those colours. Exactly how do we do that? Before my discussion with Stefan that wasn’t even a question for me. I would do this: .component1 { --linkcolor: red; --hovercolor: blue; } .component2 { --linkcolor: purple; --hovercolor: cyan; } a { color: var(--linkcolor); } a:hover,a:focus { color: var(--hovercol

fit-content and fit-content()

29 April 2021 @ 12:28 pm

Today we will look at fit-content and fit-content(), which are special values for width and grid definitions. It’s ... complicated — not as a concept, but in its practical application. .width { width: -moz-fit-content; width: fit-content; } .minwidth { min-width: -moz-fit-content; min-width: fit-content; } .maxwidth { max-width: -moz-fit-content; max-width: fit-content; } div.radios { display: grid; grid-template-columns: 1fr 1fr; } div.radios output { grid-column: span 2; } label { display: block; } .flex div { flex-basis: 30%; flex-grow: 1; } function initBoxes(obj) { initCheck(); let container = obj.querySelector('.outer-box'); initRadios(); if (container.slider && container.showComputed) { container.slider.addEventListener('input',container.showComputed,true) } function initCheck() { let check = obj.querySelector('input[type=checkbox]');

tympanus.net/codrops

VN:F [1.9.22_1171]
Rating: 8.3/10 (6 votes cast)

Useful resources and inspiration for creative minds (html, css, javascript)

Blood Sugar Battler: Building a Real Game as a Designer using AI

12 November 2025 @ 11:47 am

A look behind Alex's design-first diabetes education game, built by hand-crafted pixel art and powered by an AI that mostly knew what it was doing.

Building a 3D Infinite Carousel with Reactive Background Gradients

11 November 2025 @ 1:50 pm

Learn how to build a smooth, infinite 3D carousel where each image drives a reactive, canvas-based background gradient that adapts to its colors.

Crafting Generative CSS Worlds

10 November 2025 @ 2:18 pm

Learn how stacked grids and 3D transforms can bring heightmaps to life using nothing but the power of CSS.

Animating a 3D Scene with Spline’s New Timeline Tool

5 November 2025 @ 12:17 pm

Learn how to create smooth, realistic 3D animations in Spline using the new Timeline feature — from keyframes and curves to exporting your scene for the web.

Creating 3D Scroll-Driven Text Animations with CSS and GSAP

4 November 2025 @ 10:42 am

A step-by-step guide to building high-performance 3D scroll effects with GSAP, ScrollTrigger, and CSS transform math.

In the Foundry of Imagination: The Forged Studio Story

3 November 2025 @ 4:07 pm

Inside the creative engine redefining what’s possible with WebGPU and real-time design.

The Art of Play: Karim Maaloul’s World of Interactive Wonder

31 October 2025 @ 8:59 am

Through shaders, storytelling, and a passion for experimentation, Karim brings artful interactivity to life on the modern web.

Building a Layered Zoom Scroll Effect with GSAP ScrollSmoother and ScrollTrigger

29 October 2025 @ 1:16 pm

Learn how to recreate Telescope’s smooth, layered zoom scroll animation using GSAP’s ScrollSmoother and ScrollTrigger plugins to achieve a cinematic, depth-filled scrolling experience.

Using Search Data APIs for Faster Prototyping

28 October 2025 @ 11:20 am

Get structured search data without fighting captchas and build faster with simple, real-time API calls.

Interpol: A Low-Level Take on Tweening and Motion

27 October 2025 @ 2:55 pm

Exploring the design and mechanics of Interpol, a minimal library for low-level, time-based animations.

egrappler.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Development Resources for Entrepreneurs AJAX, CSS, JQuery etc

บาคาร่าวัววัว เกมไพ่ยอดฮิต 2025 ชนะรับเงินรางวัลมากมาย

28 May 2025 @ 9:56 am

บาคาร่าวัววัว หรือ Cow Cow Baccarat เป็นเกมไพ่บาคาร่าข้ [...]

Microgaming ผู้บุกเบิกเกมคาสิโนออนไลน์บนมือถือรายแรกของโลก

26 May 2025 @ 7:31 am

ยุคนี้ใครไม่รู้จัก Microgaming ถือว่าพลาดมาก! เพราะนี่ค [...]

Play’N Go ผู้ให้บริการเกมคาสิโนออนไลน์ยอดนิยมอันดับ 1

21 May 2025 @ 10:36 am

Play'N Go ผู้ให้บริการซอฟท์แวร์ iGaming ที่มีนักพนันเข้าเล่นมากที่สุดในโลก ให้บริการเกมสล็อต เกมโต๊ะ และเกมบิงโกที่ทันสมัย อัปเดตล่าสุด และโบนัสเงินรางวัลมากมาย

Ufa789 เว็บเดิมพันคาสิโนออนไลน์ เว็บตรงแท้ 100% เล่นได้ 24 ชั่วโมง

19 May 2025 @ 8:15 am

Ufa789 เปิดให้บริการคาสิโนออนไลน์ครบวงจร ทั้งแทงบอล บาคาร่า สล็อต รูเล็ต แทงหวย ยิงปลา พร้อมระบบเรนเดอร์เกมที่รวดเร็ว ปลอดภัย สนุกได้ตลอด 24 ชั่วโมงด้วยมือถือ

บาคาร่า6699 เว็บบาคาร่าที่ดีที่สุดในประเทศไทยปี 2025

15 May 2025 @ 11:22 am

บาคาร่า6699 เป็นเว็บพนันออนไลน์อีกแห่งหนึ่งที่ได้รับควา [...]

Vivo Gaming ผู้นำเกมคาสิโนสดระดับโลก รองรับมือถือทุกระบบ

12 May 2025 @ 9:56 am

Vivo Gaming เป็นผู้ให้บริการ ซอฟต์แวร์เกมออนไลน์ระดับพร [...]

bcr99th เว็บบาคาร่าออนไลน์ สมัครออโต้ เล่นง่าย กำไรงาม

7 May 2025 @ 8:24 am

บาคาร่าเกมเป็นเกมไพ่ที่ได้รับความนิยมสูงในอุตสาหกรรมคาส [...]

แทงบอลสูง ต่ำ UFABET ทางเลือกที่ดีที่สุดในการแทงบอลปี 2025

5 May 2025 @ 3:01 pm

UFABET เป็นเว็บแทงบอลออนไลน์ที่ให้นักพนัน แทงบอลสูง ต่ำ [...]

Ufabet911 เว็บเครือ UFA อันดับ 1 ด้านพนันออนไลน์ในประเทศไทย

29 April 2025 @ 5:49 pm

Ufabet911 เป็นเว็บตรงไม่ผ่านเอเย่นต์ที่พัฒนามาจากเว็บให [...]

บาคาร่า135 ลงทุนสร้างรายได้ง่ายๆ ผ่านเว็บตรงบาคาร่า

25 April 2025 @ 5:23 pm

บาคาร่า135 เป็นเกมที่ได้รับความนิยมมากที่สุดในวงการอุตส [...]

caniuse.com

VN:F [1.9.22_1171]
Rating: 8.0/10 (1 vote cast)

Compatibility tables for support of HTML5, CSS3, SVG and more in desktop and mobile browsers.

Site update: web-features now included + new feature list functionality

11 October 2025 @ 12:30 pm

Today's site update adds a number of new features: Web-features browser support tables In addition to the existing caniuse and MDN BCD support tables, features from the web-features project will now appear in search results and elsewhere on the site. Each web-feature table includes the support included from the major browsers tracked as well as derived support for other browsers where available. Each table also includes a link to the list of all BCD sub-features that the feature's support is based on. Web-features that have a caniuse equivalent are currently hidden to prevent duplicate information (similar to how BCD features are handled). Note that currently there are still a few places where only the original caniuse features are listed or considered (for example the comparison tool), these will be updated to include web-features in the future. New feature list UI and improved filteri

New feature: CSS if() function

18 July 2025 @ 12:00 am

CSS if() function: The if() CSS function allows different values to be set for a property depending on the result of a conditional test. The test can be based on a style query, a media query, or a feature query.

New feature: View Transitions (cross-document)

23 March 2025 @ 12:00 am

View Transitions (cross-document): Provides a mechanism for easily creating animated transitions between different DOM states, while also updating the DOM contents in a single step. This API is specific to cross-document transitions.

8 new features

7 April 2024 @ 12:00 am

- WebAssembly BigInt to i64 conversion in JS API: An extension to the WebAssembly JS API for bidrectionally converting BigInts and 64-bit WebAssembly integer values - WebAssembly Bulk Memory Operations: An extension to WebAssembly adding bulk memory operations and conditional segment initialization - WebAssembly Multi-Value: An extension to WebAssembly allowing instructions, blocks and functions to produce multiple result values - WebAssembly Import/Export of Mutable Globals: An extension to WebAssembly import and export of mutable global variables - WebAssembly Non-trapping float-to-int Conversion: An extension to WebAssembly adding floating-point to integer conversion operators which saturate instead of trapping - WebAssembly Sign Extension O

2 new features

17 February 2024 @ 12:00 am

- WebAssembly Reference Types: An extension to WebAssembly allowing opaque references as first-class types, and multiple tables - CSS Anchor Positioning: Allows placing elements anywhere on the page relative to an "anchor element", without regard to the layout of other elements besides their containing block

New feature: Customizable Select element

7 January 2024 @ 12:00 am

Customizable Select element: Proposal for a customizable <select> element. Previously envisioned as a separate element (<selectlist> or <selectmenu>).

Baseline badges now on Can I use

12 December 2023 @ 8:33 am

Starting today, you will start noticing badges on feature tables that map to Web Features. These badges match those seen on MDN Web Docs and offer a quick at-a-glance view of feature support based on the Baseline definition. To learn more about the badges on Can I use and what they mean see this web.dev announcement. If you'd like to learn more about Baseline see this explanation from the WebDX community group. Note that the badges are intended as a helpful way to see if support meets a certain defined threshold, the full support table should always be consulted to learn details about a feature's support.

arstechnica.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (2 votes cast)

Serving the Technologist for more than a decade. IT news, reviews, and analysis.

US may owe $1 trillion in refunds if SCOTUS cancels Trump tariffs

14 November 2025 @ 9:49 pm

Tech industry primed for big refunds if SCOTUS rules against Trump tariffs.

The twin probes just launched toward Mars have an Easter egg on board

14 November 2025 @ 9:30 pm

"Blue" and "Gold" are expected to arrive at Mars in September 2027.

As shutdown ends, dubious CDC panel gets back to dismantling vaccine schedule

14 November 2025 @ 9:01 pm

Pediatricians are calling for members to be replaced and all their decisions reversed.

How two Nissan Leafs help make a regional airport more resilient

14 November 2025 @ 8:45 pm

We've seen schoolbuses and big pickups do V2G; how about a smaller car?

“How about no”: FCC boss Brendan Carr says he won’t end news distortion probes

14 November 2025 @ 8:32 pm

Carr rejects criticism from four former FCC chairs, including three Republicans.

What’s it like to compete in the longest US off-road rally with no GPS?

14 November 2025 @ 7:22 pm

Hydrogen and solar power the rally infrastructure, but navigation is low-tech.

Three astronauts are stuck on China’s space station without a safe ride home

14 November 2025 @ 6:56 pm

"This does not meet the release conditions for a safe manned return."

Forget AGI—Sam Altman celebrates ChatGPT finally following em dash formatting rules

14 November 2025 @ 6:45 pm

Ongoing struggles with AI model instruction-following show that true human-level AI still a ways off.

World’s oldest RNA extracted from Ice Age woolly mammoth

14 November 2025 @ 6:06 pm

Sequencing an ancient creature’s RNA opens up a new window into extinct life.

Dogs came in a wide range of sizes and shapes long before modern breeds

14 November 2025 @ 5:49 pm

Life with humans changed dogs in some dramatic ways, and it didn't take long.

newsthump.com

VN:F [1.9.22_1171]
Rating: 3.8/10 (4 votes cast)

News with a humourous edge

Children in Need celebrates raising less than half the amount Michelle Mone still owes the government for faulty PPE

15 November 2025 @ 8:43 am

Children in need michelle moneFriday night saw Children in Need raise an incredible £46m, which is about 40% of the amount of money still owed by companies linked to Michelle Mone for faulty PPE delivered during the covid pandemic.

NHS comes under fire as Pudsey reaches 40th year on waiting list for eye operation

14 November 2025 @ 3:31 pm

Pudsey bearThe NHS is today coming under fire after Children in Need mascot Pudsey bear reached his 40th year of waiting for an operation on his eye.

Toy Story 5 to see Woody and pals go up against mommy’s most evil toy; Vibrato

14 November 2025 @ 9:47 am

Toy Story 5 with VibratoThe cast of Toy Story 5 will face their most dastardly foe yet.

NewsThump to release a Christmas TV advert

14 November 2025 @ 9:06 am

NewsThump writer asking questionsIn the hope of drumming up more sheep-like followers, it has been announced that the bleeding heart liberal echo chamber website NewsThump is to launch a Christmas TV advert.

Jeffrey Epstein accused of letting a child write his emails

14 November 2025 @ 7:47 am

Epstein ListThe late paedophile Jeffrey Epstein is facing fresh accusations after the House Oversight Committee released a series of illiterate and incoherent emails seemingly written by a child. 

Man begins World Kindness Day by screaming dog’s abuse at other drivers

13 November 2025 @ 12:35 pm

Angry driver behind the wheelA man has begun World Kindness Day by hurling all manner of abuse at several drivers on his short commute to work this morning.

Who the f**k arranged World Kindness Day for a Thursday in November, asks everyone

13 November 2025 @ 11:08 am

woman unhappy in the officePutting World Kindness Day on a wet Thursday in November is clearly the work of a spiteful twat, according to everyone today.

BBC apologises to Basil Fawlty for edits that make him look like a nasty incompetent snob

13 November 2025 @ 10:55 am

Basil Fawtly at the BBCThe BBC has issued a formal apology to fictional hotelier Basil Fawlty for edits to footage that made him appear to be a bigoted, incompetent, rage-filled, nasty snob.

“Jeffrey Epstein was talking about a different Donald Trump” insists White House

12 November 2025 @ 4:38 pm

Karoline Leavitt press conferenceThe White House has today clarified that recently released Epstein emails alleging “Donald Trump knew about the girls” are “clearly referring to a different Donald Trump,” possibly a quiet accountant from Delaware or a plumber with the same name.

‘Oh f**k’ says Donald Trump

12 November 2025 @ 3:50 pm

Trump shocked at emailsFollowing newly-released email evidence where Jeffrey Epstein suggests Donald Trump spent hours with one of the victims, the White House has today released a two-word statement from Donald Trump simply reading, ‘Oh f**k.’

foundation.zurb.com

VN:F [1.9.22_1171]
Rating: 8.0/10 (1 vote cast)

html5 grid framework similar to bootstrap.

The Amazon Effect and How Retailers Can Slay the Beast

9 June 2017 @ 7:00 pm

Evil Amazon LogoThe past year has been brutal for retailers, with many respected brands closing stores or shutting down completely. Traditional retailers like Sears, Kmart, JCPenny and Macy’s are struggling to find footing and losing customers. It’s not as if this wasn’t expected- Amazon has been disrupting the world of retail the last twenty years by driving online shopping growth and creating record breaking revenue. People call it The Amazon Effect. But is this Amazon Effect real? Or is it just the natural turnover of poorly performing companies? According to the Census Bureau, retail spending as a whole is up 5% year over year, and up 17% in the last five years. The ACSI also says there is a rise in how people feel about ret

How Design Insights Transformed Foundation Building Blocks

26 May 2017 @ 9:00 pm

Foundation started out as an internal tool to help our team build cutting edge applications for our clients more quickly. Little did we know, it would blow up to be one of the most popular open source projects ever, accelerate the adoption of responsive web design, and power hundreds of thousands of brands all across the world. We're proud that Foundation has become a leading voice helping shape where the web is heading. However, through our constant conversations with students, the community, and

The New Foundation Docs: Learn Your Way

17 May 2017 @ 7:00 pm

Whether for internal use or for an open-source project, most programmers hate writing technical documentation. Not just dislike, hate. They hate it. And because they hate it, it usually isn't very good. It can be hard to follow and incomplete, which is irritating to experienced devs and causes panic attacks for newbies just trying to learn something. RTFM, or Read the F@$%& Manual, is an expression commonly thrown at people trying to learn some new coding language or technology, but how can they if nobody wants to WriteTFM? But even if a developer or team wants to create good documentation, it will inevitably fall short because not everyone learns best through reading. Many people are visual learners, and even more learn best through the act of doing.

Foundation Building Blocks: Over 100 Components to Jump Start Your Projects

13 April 2017 @ 5:00 pm

The Foundation team has cut your development time in half again. Today we're thrilled to share Foundation Building Blocks with you- a comprehensive, open-source library of coded UI components you can drop into any standard Foundation project to give yourself a massive head start in your projects. Hundreds of Coded UI Components for Your Foundation Projects The Foundation Building Blocks library has been rebuilt from the ground up with over 100 code snippets in six categories including Navigation, Status, Control, Media, Containers and Form components. Built by the ZURB team, these are the most common and useful design patterns and UI components we've found in our two decades of web development work. Just browse the library, select the Building Block you need, and copy and paste the code into your pr

Foundation & CSS Grid: Think Beyond the Page

13 March 2017 @ 11:55 pm

There's a revolution happening right now. The way we think about and design websites is going to change again. Old conventions and methods are being replaced by exciting new technologies that open up entirely new ways to design and build the web. And they're available today. Out With the Old Most early websites in the 90’s were little more than digital brochures, which makes sense since the web was born from the world of print. Our options as web designers for laying out content fell short of what was available to print designers for many years. Slowly but surely, our tools got better and we discovered new methods and techniques that allowed us to do some incredible things. The web came into its own, but the world of print still exerts its influence on the way many designers think. To this day we still call web files “documents,” arrange our content in “pages,” and try to fit the experience of users into sitemaps.

17 Web Design Trends That Will Take Over 2017

10 March 2017 @ 8:00 pm

Designers working on web projects in 2017, in some ways, face more challenges than ever before. They have to create engaging websites, apps, and services that work seamlessly across all devices and work for a global audience at a pace that seems to speed up every year. That audience too is more tech savvy, have higher expectations and are more design literate than ever before and expect near perfection. Faced with these challenges, it's more important than ever for designers to be aware of emerging trends, solutions and patterns that can help them solve common issues, capture the full attention of their audiences, and deliver amazing experiences. Here at ZURB, we've helped hundreds of companies surface the best solutions and take advantage of new patterns in their websites and products. We've created this list of 17 design and development trends we think every designer should be

What's Underneath Matters: How MeUndies Increased Mobile Conversion by 40%

2 March 2017 @ 5:01 pm

Did you know that most men own at least one pair of underwear that's over 7 years old? We didn't' and we sort of wish that realization stayed hidden from us, to be honest. MeUndies, a company leading the movement in underwear innovation by providing comfortable everyday basics and a transparent shopping experience, gave us this fact. They recently started using Foundation on their site in an effort to boost their mobile sales, which constitutes most of their traffic and we wanted to share their story. After 7 years, it was time for MeUndies to change their site's underwear, which is to say their code. See, the MeUndies site was beginning to boom on mobile, but they were losing sales by not optimizing the experience and ease of use for those mobile users. The team began to put their heads together and started exploring solutions.

Design for Proximity, Not for Clicks

17 January 2017 @ 7:00 pm

Remember when the web was a collection of static websites, largely HTML, no CSS, and layout done with tables and frames? How about even farther back ' when your choice of mediums for design were print, film, industrial, and maybe even radio? What about the aforementioned mediums is consistent? They were all linear. That meant we could think about things going from A-Z and stop there. Even when we got digital interfaces (enter HTML), we continued to think of interfaces as static screens for decades. It made things simple, and we put our focus into cutting the amounts of clicks on that trail to get people to the end faster. The data even seemed to prove it, with more clicks equaling 'bad' and less clicks equaling 'good.' This especially seemed to ring true in the eCommerce world where it's been accepted that the more hoops you make your user go through to buy something, the less sales you'll see. It was estimated that

Bring Your Page to Life with Reactive Animations

12 January 2017 @ 6:30 pm

GIF of Reactive ListenerThe explosion of native mobile apps this decade put a spotlight on human centered design. Apple's iPhone and iOS were breakthroughs in part because of the way they used design to mimic humans and appeal to emotion. How good a design looks now plays second fiddle to the way it feels. New terms like 'microinteractions' and 'reactive animations' have been thrust into the designer's vernacular. It's a new era of design, the 'Experience Era.' While mobile has been killin' it in this area, desktop experiences have still felt cl

Design or Get Off the Pot

27 December 2016 @ 8:31 pm

Designers, it's time to elevate our game or get off the pot. Yes, I'm telling designers to step up. Because I'm not seeing it happen. What I see now are scared designers afraid to make decisions on behalf of their organizations. Creators and craftsmen struggling to tell other people what works best, and it's putting their own future along with their organization's in jeopardy. Everyone wants the benefits that come along with authority and influence, but most don't want what inevitably follows: the responsibility of decision making. Making decisions all day requires tremendous amounts of mental energy. Sometimes it's not fun and it can be scary. These feelings, combined with impostor syndrome, put doubt into the heads of

500px.com

VN:F [1.9.22_1171]
Rating: 8.0/10 (2 votes cast)

Photo community powered by creative people worldwide that lets you discover, share, buy and sell photographs.

html5canvastutorials.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Everything you need to know about HTML5 Canvas by providing structured tutorials and creative labs.

Continuous Data Protection Explained: Benefits and Uses

14 July 2024 @ 3:21 pm

Nowadays, data is widely accepted as a fundamental unit that businesses and organizations hold. The availability, integrity, and recoverability of data have become crucial. Modern enterprises need more traditional backup methods, though effective, and have trouble meeting the strict recovery point objectives (RPOs) that modern enterprises demand. One of the strong solutions, and hence one […]

Fitness App Development Essentials

26 April 2024 @ 5:14 pm

In the rapidly evolving world of health and wellness, fitness applications have become indispensable tools for millions seeking to maintain their physical well-being. The development of a fitness app involves several crucial steps that can determine its success in a competitive market. This guide outlines the key essentials of creating a fitness application that is […]

Empowering Developers: Optimizing Global Money Transfers through Coding Mastery

26 April 2024 @ 1:43 pm

When it comes to locating efficient transportation means for currencies for individual and business purposes, people commonly think about digital payment platforms. Thanks to the advanced financial engineering of companies like Profee, your money transfer to Ukraine or vice versa will be safe and sound. It is a proactive approach to see what’s behind popular […]

The Future of Web Design: How Coding and Webflow Are Revolutionizing Digital Agencies

18 December 2023 @ 6:48 pm

In the ever-evolving world of web design, the emergence of tools like Webflow and the ever-growing importance of coding have marked a new era for digital agencies. The synergy of these two elements is not just reshaping how websites are built but is also redefining the very nature of web design. In this comprehensive exploration, […]

Crafting Tomorrow: The Symbiosis of Content Creation and Artificial Intelligence

14 December 2023 @ 5:38 pm

The rapid advancement of artificial intelligence (AI) is transforming numerous industries, including content creation. As AI capabilities grow, there is tremendous potential for AI and human creators to work symbiotically - each complementing the other's strengths. This symbiosis promises to shape the future of content creation, ushering in new levels of personalization, interactivity, and immersion. […]

The Digital Evolution of Art: From Pixels to Paint and Beyond

6 October 2023 @ 5:04 pm

Over time, art has undergone constant change, reflecting current events, popular culture, and, most importantly, technological development. Historically, the main avenues of expressing creativity have been via conventional art forms, including painting, sculpture, and graphics. However, a recent technical revolution has spawned an artistic process that the globe has witnessed. Electronics, software, and the Internet […]

JavaScript Design Lab: Exploring the Intersection of Art and Code

31 August 2023 @ 6:34 am

In the world of web development, JavaScript has become a powerhouse programming language, enabling developers to create dynamic and interactive web experiences. But JavaScript is not just about functionality and logic; it can also be a tool for artistic expression and creative design. In this article, we delve into the fascinating realm of JavaScript design, […]

Mastering Object-Oriented Programming (OOP) in PHP: Unveiling the Power of Code Reusability and Organization

25 August 2023 @ 4:44 pm

In the world of web development, where complexity and functionality continue to evolve, Object-Oriented Programming (OOP) stands as a cornerstone for creating organized, efficient, and maintainable code. With PHP being one of the most widely used server-side scripting languages, understanding and harnessing the power of OOP in PHP is essential for modern developers. In this […]

Which Online Marketing Strategies Are Best For Lead Generation?

6 May 2023 @ 4:37 pm

Any business owner will tell you (no matter what industry they are in), lead generation is the biggest ball ache of them all. It’s expensive, it’s time consuming, and it’s frustrating. However, there are far easier and more effective ways of attracting ‘ready to spend’ customers to your cause. If you’ve been struggling and need […]

The List Of Top 6 Cities To Live And Work As A Programmer

22 April 2023 @ 5:19 pm

As the world becomes increasingly digital and technology-focused, programming has become a highly sought-after skill. The demand for programmers has never been higher, and as a result, many cities around the world have established themselves as hubs for tech talent. These towns offer high-paying job opportunities and a luxurious standard of living for programmers. This […]

videocardz.com

VN:F [1.9.22_1171]
Rating: 8.0/10 (4 votes cast)

Video card reviews and 3D benchmark tests

Google AI Plus já está disponível em Portugal: IA avançada, 200GB e mais por €7,99

14 November 2025 @ 4:22 pm

A Google decidiu tornar as suas ferramentas de inteligência artificial mais avançadas acessíveis ao público português com o lançamento do novo plano Google AI Plus. Desenhado para quem quer um boost de produtividade e criatividade, este plano agrupa várias das novas apostas da gigante tecnológica. O preço para Portugal está fixado nos 7,99 euros mensais. […]

EUA criam força-tarefa para travar burlas cripto de 9,3 mil milhões de euros

14 November 2025 @ 3:29 pm

As autoridades federais dos Estados Unidos anunciaram a criação de uma nova força-tarefa dedicada a desmantelar redes de cibercrime sediadas na China, responsáveis por fraudes de investimento em criptomoedas que roubam anualmente quase 9,3 mil milhões de euros (10 mil milhões de dólares) a cidadãos americanos. A equipa, designada “Scam Center Strike Force”, conta com […]

Flutter 3.38 e Dart 3.10 já chegaram: Google aposta forte na IA Gemini e em interfaces dinâmicas

14 November 2025 @ 3:25 pm

A Google anunciou o lançamento do Flutter 3.38 e do Dart 3.10, trazendo melhorias significativas para os programadores que criam interfaces nativas em iOS, Android, web e desktop. Conforme detalhado no blog oficial do Flutter, a grande aposta é na Inteligência Artificial. GenUI e Gemini: a IA assume o controlo A adição de maior destaque […]

Samsung “copia” Apple e Galaxy S26 base pode manter o preço de 799 dólares

14 November 2025 @ 3:16 pm

Uma boa notícia para quem anda a poupar para o próximo topo de gama da Samsung. Ao que tudo indica, a gigante sul-coreana decidiu seguir a estratégia da Apple e manter o preço do modelo base do Galaxy S26. Segundo a publicação sul-coreana Newspim, o S26 deverá custar 799 dólares, o mesmo valor do Galaxy […]

WhatsApp prepara-se para “abrir”: interoperabilidade na UE começa com BirdyChat e Haiket

14 November 2025 @ 2:47 pm

A Meta confirmou que o WhatsApp vai, em breve, permitir a interoperabilidade com serviços de mensagens de terceiros na União Europeia. Esta mudança, exigida pela nova Lei dos Mercados Digitais (DMA) do bloco europeu, começa com duas aplicações: a BirdyChat e a Haiket. A empresa, que tem vindo a preparar esta integração desde 2023, realizou […]

LibreOffice 25.8.3 já chegou e corrige mais de 70 bugs

14 November 2025 @ 2:40 pm

A The Document Foundation lançou o LibreOffice 25.8.3, a terceira atualização de manutenção para a mais recente série desta popular suíte de escritório. Esta nova versão chega cerca de cinco semanas após o lançamento anterior, trazendo um foco renovado na estabilidade e na correção de falhas. Mais estabilidade e menos falhas Esta atualização visa polir […]

Ubisoft adia resultados financeiros e suspende negociação de ações. Mercado especula sobre o futuro

14 November 2025 @ 2:27 pm

A Ubisoft não está a atravessar um período calmo. A empresa francesa, conhecida por sagas como Assassin’s Creed, anunciou que vai adiar a apresentação dos seus resultados financeiros semestrais (referentes ao primeiro semestre do ano fiscal 2025-26). Mais alarmante ainda, solicitou a suspensão da negociação das suas ações na bolsa europeia Euronext. A decisão foi […]

Disney+ prepara-se para receber vídeos curtos criados por IA pelos utilizadores

14 November 2025 @ 2:21 pm

A Disney+ poderá estar a preparar-se para uma mudança surpreendente. O CEO da empresa, Bob Iger, sugeriu que a plataforma de streaming pode vir a integrar conteúdo gerado pelo utilizador (UGC), especificamente vídeos curtos criados com recurso a Inteligência Artificial. A revelação surgiu durante a mais recente apresentação de resultados financeiros da gigante do entretenimento. […]

Valve poderá ter um jogo secreto escondido na Steam e os fãs sonham com Half-Life 3

14 November 2025 @ 2:16 pm

A espera por Half-Life 3 é, talvez, uma das maiores lendas da indústria dos videojogos. Embora a Valve tenha dedicado energias a outros projetos de sucesso recente, como a Steam Deck, a comunidade de fãs agarra-se a qualquer pista que possa indicar o regresso da icónica saga. Agora, uma nova descoberta na loja Steam reacendeu […]