Search
Satoshi Nakamoto Could Be Criminal Mastermind Paul Le Roux
13.5.2019
One of the most enduring mysteries of modern times has produced another enthralling twist. Satoshi Nakamoto, Bitcoin’s pseudonymous and enigmatic creator, has not been seen online in more than eight years. Evidence has now surfaced that points to a new Satoshi candidate, whose known life...
Change Color of SVG on Hover
13.5.2019
There are a lot of different ways to use SVG. Depending on which way, the tactic for recoloring that SVG in different states or conditions — :hover, :active, :focus, class name change, etc. — is different.
Let's look at the ways.
Inline SVG
Inline SVG is my favorite way to use...
SVG Properties and CSS
13.5.2019
There are many Scalable Vector Graphics (SVG), but only certain attributes can be applied as CSS to SVG. Presentation attributes are used to style SVG elements and can be used as CSS properties. Some of these attributes are SVG-only while others are already shared in CSS, such as font-size...
You Can Now ‘Spedn’ Bitcoin at GameStop, Barnes & Noble and More
13.5.2019
Payments startup Flexa has released a crypto wallet called SPEDN to help brick-and-mortar retailers accept cryptocurrencies
Joseph Lubin on Ethereum 2.0: ETH to Become 1,000 Times More Scalable Within 24 Months
13.5.2019
In 18 to 24 months, the Ethereum blockchain will become about 1,000 times more scalable, according to Ethereum co-founder Joseph Lubin
ErisX’s Spot Market: More Institutional Participation and Regulatory Oversight Coming to Crypto?
12.5.2019
ErisX’s spot market may bring more smart money, regulatory intervention to crypto
Three Very Different Paths to Blockchain Scaling
11.5.2019
How do you scale a blockchain so that it can process hundreds or even thousands of transactions per second – but without compromising on decentralization? It’s a question that has kept some of the brightest minds in the space awake at night, and some of the more ardent crypto factions...
Coineal Announces the Listings of Multiple Coins in the Days to Come
11.5.2019
Coineal is a Global Trading Platform for digital asset exchange established in early 2018. The company has been integrating a ton of cryptocurrency onto its platform these days to maximize its reach to the mass. Multiple announcements for listings have been dropped via Coineal’s handle on...
Deploying a Client-Side Rendered create-react-app to Microsoft Azure
10.5.2019
Deploying a React app to Microsoft Azure is simple. Except that... it isn’t. The devil is in the details. If you're looking to deploy a create-react-app — or a similar style front-end JavaScript framework that requires pushState-based routing — to Microsoft Azure, I believe this article will serve...
Weekly Platform News: Feature Policy, Signed Exchanges, iOS browsers
10.5.2019
👋 Hey folks! This is the first edition of a new weekly update we'll be posting that covers timely news at the intersection of development standards and the tools that make them available on the web. We often talk about the pace of change in our industry. It's fast and touches everything...
Bitcoin (BTC), A Brand – No More Just A Decentralized Cryptocurrency!
10.5.2019
Bitcoin, a decentralized cryptocurrency is flourishing on the board as an idea that has already molded into massive success in itself. Irrespective of its price momentum in the last 10 years, there have been times when Bitcoin have been placed at such a position wherein the BTC value has done...
Nordic Banking Giant Nordea Opens Blockchain Trading Platform to More Clients
10.5.2019
Nordea is now allowing small and medium-sized enterprises to use its blockchain platform we.trade
Renewed Market Growth Has Sparked Demand for Crypto-Backed Loans
10.5.2019
With cryptocurrency markets back to life, hodling sounds like a smart strategy once again. Cryptocurrency owners are now more likely to pledge coins to borrow fiat if they need it, rather than sell their appreciating digital assets. The spread of crypto-backed loans could also be a good indicator...
CSS-Tricks Chronicle XXXV
10.5.2019
I like to do these little roundups of things going on with myself, this site, and the other sites that are part of the CSS-Tricks family.
I spoke at Smashing Conf San Francisco.
There's a video! I can't embed it here because of privacy settings or something, so here's a link to the Vimeo.
It's...
The Thinking Behind Simplifying Event Handlers
9.5.2019
Events are used to respond when a user clicks somewhere, focuses on a link with their keyboard, and changes the text in a form. When I first started learning JavaScript, I wrote complicated event listeners. More recently, I've learned how to reduce both the amount of code I write and the number...
A responsive grid layout with no media queries
9.5.2019
Andy Bell made a really cool demo that shows us how to create a responsive grid layout without any media queries at all. It happens to look like this when you change the size of the browser window:
I think this is a wonderful layout technique that’s just 6 lines (!) of CSS.
.auto-grid...
The Impact of Team Collaboration and Communication on Projects
9.5.2019
(This is a sponsored post.)
The CSS-Tricks team was cracking up the other day when Miranda introduced us to something called "swoop and poop." That was a new term for most of us, but tell me if you've ever experienced this for yourself.
The idea is that someone in an organization — usually...
A Few Functional Uses for Intersection Observer to Know When an Element is in View
8.5.2019
You might not know this, but JavaScript has stealthily accumulated quite a number of observers in recent times, and Intersection Observer is a part of that arsenal. Observers are objects that spot something in real-time — like birdwatchers going to their favorite place to sit and wait for the birds...
Getting To Know The MutationObserver API
8.5.2019
MutationObserver watches the DOM, specifically the places you tell it to, like:
document.querySelector('#watch-this');
...and it can tell you (trigger a callback) when stuff happens — like when a child is added, removed, changed, or a number of other things.
I used it just the other day...
Why, How, and When to Use Semantic HTML and ARIA
7.5.2019
Semantic HTML and Accessible Rich Internet Applications (ARIA) help create interfaces that work for everyone in the most performant, robust, and simple way possible. They add essential meaning to your content, which lets web browsers, search engines, screen readers, RSS readers, and ultimately...