Search
How do you make a layout with pictures down one side of a page matched up with paragraphs on the other side?
30.6.2021
I got this exact question in an email the other day, and I thought it would make a nice blog post because of how wonderfully satisfying this is to do in CSS these days. Plus we can sprinkle in polish …
The post How do you make a layout with pictures down one side of a page matched up with...
Three Ethereum Testnets Are Transitioning to the Highly Anticipated London Upgrade
22.6.2021
According to a blog post on the Ethereum Foundation’s website, three Ethereum testnets leveraging the London hard fork will go live during the next few weeks. Ethereum core developer Tim Beiko explained last Friday that the “upgrade will first go live on Ropsten, at block 10499401...
Making Tables With Sticky Header and Footers Got a Bit Easier
15.6.2021
It wasn’t long ago when I looked at sticky headers and footers in HTML <table>s in the blog post A table with both a sticky header and a sticky first column. In it, I never used position: sticky on …
The post Making Tables With Sticky Header and Footers Got a Bit Easier...
Should DevTools teach the CSS cascade?
22.5.2021
Stefan Judis, two days before I mouthed off about using (X, X, X, X) for talking about specificity, has a great blog post not only using that format, but advocating that browser DevTools should show us that value by …
The post Should DevTools teach the CSS cascade? appeared first...
CSS Pie Timer Re-Revisited
12.5.2021
Kitty reflected on an ancient blog post here on CSS-Tricks on how to make an animated pie timer. The old technique is still clever. The new technique is equally clever and much easier. I particularly like the steps() animation function…
The post CSS Pie Timer Re-Revisited appeared first...
Let’s use (X, X, X, X) for talking about specificity
4.5.2021
I was just chatting with Eric Meyer the other day and I remembered an Eric Meyer story from my formative years. I wrote a blog post about CSS specificity, and Eric took the time to point out the misleading nature …
The post Let’s use (X, X, X, X) for talking about specificity appeared first...
America’s Fifth-Largest Banking Institution US Bank to Offer Cryptocurrency Custody
28.4.2021
On April 27, the American bank holding company U.S. Bank revealed in a blog post that the financial institution plans to offer cryptocurrency custody services. The bank’s chief strategy officer for U.S. Bank Global Fund Services, Christine Waldron, says she is proud of her company’s...
Shapeshift Reveals Platform Supports Unwrapped Swaps via Thorchain With No KYC
20.4.2021
Just recently, Shapeshift founder and CEO Erik Voorhees published a blog post about a new project called Thorchain, a protocol that allows for decentralized exchanges without wrapping or bridging technology commonly used today. Thorchain launched on April 13, 2021, and the Shapeshift founder...
See You Around
12.4.2021
Get it? Because this blog post is about Around, the wonderful new video call software. I’ve been using it for my video calls and I’d be happy to deliver you a TLDR right off the bat: It’s nice. It …
The post See You Around appeared first on CSS-Tricks.
You can support...
Maps Scroll Wheel Fix
24.3.2021
This blog post by Steve Fenton came across my feeds the other day. I’d never heard of HERE maps before, but apparently they are embeddable somehow, like Google Maps. The problem is that you zoom and and out of HERE …
The post Maps Scroll Wheel Fix appeared first on CSS-Tricks.
You...
Nvidia Limits the Efficiency of Mining Ether Using Its GPUs by 50%
22.2.2021
Nvidia announced that it will start limiting the efficiency of mining ethereum or any other crypto using its new range of upcoming graphics processing units (GPUs). In a blog post published Feb. 19, the U.S. hardware maker said this limitation will feature first on its new Geforce RTX 3060 card...
Front of the Front / Back of the Front
17.2.2021
People really latched onto Brad’s framing. And for good reason. Front-end development has gotten so wide scoping that there are specialists inside of it. Two years ago, I cut it down the middle and now Brad is putting …
The post Front of the Front / Back of the Front appeared first...
Analyst Lyn Alden Says Ethereum Is Still an ‘Unfinished Project’
20.1.2021
A bitcoin (BTC) strategist and investor remain skeptical towards the Ethereum protocol, considering it an “unfinished product.” Lyn Alden, an advisor for the dollar cost averaging BTC investing app Swan Bitcoin, believes the network lacks a concrete model, “other than just...
Careful When Changing the Display of `summary`
12.1.2021
I got a very helpful bug report the other day (thanks Kilian!) about the <details> element in a blog post of mine not showing the default ▶ icon, and thus looking rather like any ol’ random <p>.
It …
The post Careful When Changing the Display of `summary`...
Some Recent Videos About Websites That Are Pretty Good
5.1.2021
Here’s a little hodgepodge of videos I’ve recently bookmarked (and watched). I couldn’t decide if each one of them should be a separate blog post or if I should do this combined list post thing. If I had a lot …
The post Some Recent Videos About Websites That Are Pretty...
Goals For 2021
29.12.2020
Every year I write a blog post about my goals for the year but I won’t pretend this year’s post is the same. I mean how the hell do I create realistic goals knowing what 2020 was and what 2021 inherits?! Pandemic, drastic political churn, social unrest…and none of that is related...
The Power of Lampshading
16.12.2020
I enjoyed this blog post from Shawn. Lampshading is apparently the idea of a TV show calling attention to some weakness (like an implausible plot point) so that the show can move on. By calling it out, it avoids criticism by demonstrating the self-awareness. For developers, Shawn notes, it’s...
CFTC’s New Rules Cause Coinbase to Stop Offering Crypto Margin Trading
25.11.2020
Cryptocurrency exchange Coinbase is disabling its margin trading product in order to comply with the new rules set by the Commodity Futures Trading Commission (CFTC). CFTC’s Rules Affecting Margin Trading Offerings Coinbase’s chief legal officer, Paul Grewal, explained in a blog post...
Blog Author Tipped $10,000 for Well Phrased Peer-to-Peer Cash Conviction
21.11.2020
Following the Bitcoin Cash upgrade, the BCH proponent known as Mobtwo published a post on the read.cash blogging website called “Bitcoin Cash – Simple Fundamentals.” The editorial’s author says he wholeheartedly believes that BCH will one day overtake BTC in the long run....
console.log({ myVariable });
19.11.2020
I think this might be my most popular tweet of all time, but I’m not sure how to verify that these days. I’ll restate this neat little trick here because blogging is cool and fun.
I used to do this a lot while debugging JavaScript:
console.log("myVariable: ", myVariable);
But now I...