Search
Norway Releases Source Code for Digital Krone Sandbox, Utilizes Ethereum Technology
14.9.2022
A crypto company working with the central bank of Norway has published the source code for the sandbox created to trial the digital version of the Nordic nation’s fiat currency. The prototype digital krone is being built on the Ethereum network and the regulator wants to test various...
WebKit Features in Safari 16.0
13.9.2022
Whew boy, Safari 16 is officially out in the wild and it packs in a bunch of features, some new and exciting (Subgrid! Container Queries! Font Palettes!) and others we’ve been waiting on for better cross-browser support (Motion Path! Overscroll …
WebKit Features in Safari 16.0...
The Basics of Remix
13.9.2022
You’ve probably heard a lot of hype around one of the newest kids on the framework block, Remix. It may be surprising that it got its start back in 2019, but it was originally only available as a subscription-based premium …
The Basics of Remix originally published on CSS-Tricks, which...
Building Interactive Figma Widgets
12.9.2022
Figma has always encouraged collaboration between developers and designers. It strives on an endless treasury of community-made plugins. Need 3D elements? There’s a plugin for that. Need abstract SVGs? There’s a plugin for that, too.
That said, the design part...
Hungary’s Prime Minister Says ‘Europe Has Run out of Energy’ Amid Russia’s Gas Standoff
11.9.2022
Europe is suffering and struggling to contain an energy crisis according to various reports that say the eurozone might have to deal with a cold winter that could lead to energy rationing and blackouts. A recent survey published by the General Confederation of Greek Workers (GSEE) shows seven...
How I Made a Pure CSS Puzzle Game
9.9.2022
I recently discovered the joy of creating CSS-only games. It’s always fascinating how HTML and CSS are capable of handling the logic of an entire online game, so I had to try it! Such games usually rely on the ol’ …
How I Made a Pure CSS Puzzle Game originally published on CSS-Tricks, which...
Bitcoin Mining Threatens America’s Climate Change Efforts, White House Science and Tech Department Says
8.9.2022
The Biden administration is concerned about digital currency mining operations affecting climate change, after the U.S. Office of Science and Technology Policy published a report that says politicians should take action against crypto mining. The federal government’s entity recommends...
What’s New With Forms in 2022?
8.9.2022
Browsers are constantly adding new HTML, JavaScript and CSS features. Here are some useful additions to working with forms that you might have missed…
requestSubmit()
Safari 16 will be the final browser to add support for requestSubmit.
Before we …
What’s New With Forms in 2022? originally...
Overlapping Bar Charts
7.9.2022
As the name suggests, overlapping charts visualize two different sets of data in a single diagram. The idea is that the overlapping bars allow us to compare data, say, year-over-year. They are also useful for things like tracking progress for …
Overlapping Bar Charts originally published...
Publicly-Listed Miner Hive Plans to Transfer ETH Hashrate to Other GPU Mineable Coins Ahead of Merge
6.9.2022
While the cryptocurrency community prepares for The Merge, the Nasdaq-listed, Hive Blockchain Technologies, revealed in the company’s August 2022 production update that it plans to re-distribute its hashpower dedicated to Ethereum toward “other GPU mineable coins.”...
Hacking CSS Animation State and Playback Time
6.9.2022
CSS-only Wolfenstein is a little project that I made a few weeks ago. It was an experiment with CSS 3D transformations and animations.
Inspired by the FPS demo and another Wolfenstein CodePen, I decided to build my own version. …
Hacking CSS Animation State and Playback Time originally...
IMF: Crypto Assets Become More Mainstream as Hedges Against Weak Currencies, Potential Payment Instruments
6.9.2022
The International Monetary Fund (IMF) published a report stating that crypto assets have gained a “more mainstream presence as speculative investments, hedges against weak currencies, and potential payment instruments.” The IMF has called for a global response to crypto regulation...
Flutter For Front-End Web Developers
5.9.2022
I started as a front-end web developer and then became a Flutter developer. I think there were some concepts that helped me adopt Flutter easier. There were also some new concepts that were different.
In this article, I want to …
Flutter For Front-End Web Developers originally published...
Study Identifies the Top 10 States in America Most Interested in Bitcoin, Ethereum
5.9.2022
On September 2, the crypto market aggregation web portal Coingecko.com published a study that identifies the top ten states in America that are most interested in the two leading digital currencies, bitcoin and ethereum. The team leveraged Coingecko’s page traffic data and found that...
Behind the CSScenes, September 2022
1.9.2022
Those of you who have been reading CSS-Tricks for a while may remember that we used to publish a little thing we called CSS-Tricks Chronicles. Our friend Chris Coyier would write up a reflection from the past couple of …
Behind the CSScenes, September 2022 originally published on CSS-Tricks...
Comparing JAWS, NVDA, and VoiceOver
1.9.2022
A screen reader is an important accessibility tool for people with no or limited vision. People who are blind or those with low vision can use a screen reader to navigate the computer. Screen readers will read contents on the …
Comparing JAWS, NVDA, and VoiceOver originally published...
iShadeed’s Container Queries Lab
1.9.2022
Ahmad Shadeed got an early jump on container queries and has a growing collection of examples based on everyday patterns.
And, if you missed it, his latest post on container queries does a wonderful job covering how they work since …
iShadeed’s Container Queries Lab originally...
Interpolating Numeric CSS Variables
30.8.2022
We can make variables in CSS pretty easily:
:root {
--scale: 1;
}
And we can declare them on any element:
.thing {
transform: scale(--scale);
}
Even better for an example like this is applying the variable on a user …
Interpolating Numeric CSS Variables originally published...
Indian Crypto Market Is Growing: Report Shows the Country Has 115 Million Crypto Investors
27.8.2022
A new report shows that India has roughly 115 million crypto investors, and the country’s crypto economy is growing despite the recent market downturn, with more than half of the crypto investors surveyed planning to increase their crypto investments in the coming six months. Indian Crypto...
Using Grid Named Areas to Visualize (and Reference) Your Layout
26.8.2022
Whenever we build simple or complex layouts using CSS Grid, we’re usually positioning items with line numbers. Grid layouts contain grid lines that are automatically indexed with positive and negative line numbers (that is unless we explicitly name them). …
Using Grid Named Areas...