Search
Finder’s Experts Expect Solana to Surpass $1,100 by 2025, Over $5K by 2030
4.11.2021
At the end of October, the product comparison website finder.com published new survey data about price predictions concerning the leading crypto asset ethereum. On November 1, Finder’s researchers published price predictions for the ethereum competitor solana, as Finder’s panelists...
Scroll-Linked Animations With the Web Animations API (WAAPI) and ScrollTimeline
4.11.2021
The Scroll-linked Animations specification is an upcoming and experimental addition that allows us to link animation-progress to scroll-progress: as you scroll up and down a scroll container, a linked animation also advances or rewinds accordingly.
We covered some use cases …
The post...
Chapter 10: Browser Wars
3.11.2021
In June of 1995, representatives from Microsoft arrived at the Netscape offices. The stated goal was to find ways to work together—Netscape as the single dominant force in the browser market and Microsoft as a tech giant just beginning to …
The post Chapter 10: Browser Wars appeared first...
Unique Ertha Land NFTs Are Flying off the Shelves
3.11.2021
The cryptocurrency market is at an all-time high and the NFT world is booming. ERTHA is one of the hottest P2E (play to earn) gaming Metaverse projects and has already achieved incredible product-market fit, while still being in the private NFT sale round. Erthaverse is a 3D virtual representation...
Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics)
2.11.2021
First, check out how incredibly easy it is to write a Cloudflare Worker to proxy another URL:
addEventListener("fetch", (event) ={
event.respondWith(
fetch("https://css-tricks.com")
);
});
It doesn’t have any error handling or anything, but hey, it works:
Now imagine how …
The...
GUI Challenges
2.11.2021
I keep bookmarking Adam’s GUI Challenges posts/videos and, before I even have a chance to review and link them up, another one is already published! Fortunately, the homepage for them on web.dev is a nice roundup.
For example, a recent …
The post GUI Challenges appeared first...
GUI Challenges
2.11.2021
I keep bookmarking Adam’s GUI Challenges posts/videos and, before I even have a chance to review and link them up, another one is already published! Fortunately, the homepage for them on web.dev is a nice roundup.
For example, a recent …
The post GUI Challenges appeared first...
Rebase vs. Merge: Integrating Changes in Git
2.11.2021
This article is part of our “Advanced Git” series. Be sure to follow us on Twitter or sign up for our newsletter to hear about the next articles!
Most developers understand that it’s important to use branches in Git. In …
The post Rebase vs. Merge: Integrating Changes in Git appeared...
Responsible JavaScript
2.11.2021
High five to Jeremy on the big release of Responsible JavaScript on A Book Apart. There is a lot of talk about how the proliferation of JavaScript has had a negative impact on the web, but now we have …
The post Responsible JavaScript appeared first on CSS-Tricks. You can support CSS-Tricks...
Buttons vs. Links
1.11.2021
There are thousands of articles out there about buttons and links on the web; the differences and how to use them properly. Hey, I don’t mind. I wrote my own as well¹.
It’s such a common mistake on …
The post Buttons vs. Links appeared first on CSS-Tricks. You can support...
Have Single-Page Apps Ruined the Web? (“Transitional Apps”)
1.11.2021
A big heaping 19-minute bowl of not-too-hot, not-too-cold baby bear porridge website building from Rich Harris. I’ve certainly overheard more than my fair share of arguments about Single Page Apps (SPAs) vs Multi-Page Apps (MPAs).
Although, I will say it’s …
The post Have...
So, You Want to Build an @mention Autocomplete Feature?
1.11.2021
We’re all familiar with the concept of autocompletion, right? You type something into a search box and it tries to guess what you’re looking for as you type, displaying suggestions, often below the cursor. While we’re used to autocomplete on …
The post So, You Want to Build an @mention...
CSS-ing Candy Ghost Buttons
1.11.2021
Recently, while looking for some ideas on what to code as I have zero artistic sense so the only thing I can do is find pretty things that other people have come up with and remake them with clean and …
The post CSS-ing Candy Ghost Buttons appeared first on CSS-Tricks. You can support...
Patreon Considers Allowing Creators to Use Crypto for Monetization
31.10.2021
Patreon, the membership platform, is pondering the idea of letting creators in its platform issue their own creator coins. The statement, that constituted a revelation, was offered by Patreon CEO and co-founder Jack Conte and Chief Product Officer Julian Gutman during The Information’s 2021...
Some Articles About Accessibility I’ve Saved Recently IV
29.10.2021
A guide to designing accessible, WCAG-compliant focus indicators — Sara Soueidan says you can make more accessible focus outlines by doing your own, rather than leaving it to the browser — as long as you do it right. Deep dive!
…
The post Some Articles About Accessibility I’ve Saved...
Create Your Own Automated Social Images With Resoc
29.10.2021
There has been a lot of talk about automated social images lately. GitHub has created its own. A WordPress plugin has been acquired by Jetpack. There is definitely interest! People like Ryan Filler and Zach Leatherman have implemented …
The post Create Your Own Automated Social Images With...
Okhsv and Okhsl
28.10.2021
There is an old Russian fable where Okhsv and Okhsl are on a rowboat and Okhsv says to Okhsl, “What are the known shortcomings of HSL and HSV color pickers in design applications?” I kid, I kid. But really, what …
The post Okhsv and Okhsl appeared first on CSS-Tricks. You...
Okhsv and Okhsl
28.10.2021
There is an old Russian fable where Okhsv and Okhsl are on a rowboat and Okhsv says to Okhsl, “What are the known shortcomings of HSL and HSV color pickers in design applications?” I kid, I kid. But really, what …
The post Okhsv and Okhsl appeared first on CSS-Tricks. You...
Vite + _____
28.10.2021
Vite, “Next Generation Frontend Tooling” from Evan You, has been capturing a lot of attention. I’ve heard rave reviews from developers, even in private chats (you gotta try this!). Being from Evan, Vite works great with Vue, …
The post Vite + _____ appeared first...
Merge Conflicts: What They Are and How to Deal with Them
28.10.2021
Merge conflicts... Nobody likes them. Some of us even fear them. But they are a fact of life when you're working with Git, especially when you're teaming up with other developers. In most cases, merge conflicts aren't as scary as you might think. In this fourth part of our “Advanced Git” series...