Search
Creating Arrays in Hasura
4.1.2021
Hasura is one of my favorite ways to create a managed GraphQL API for my applications. I find it easy and straightforward as well as suitable for a wide range of use cases. However, since working with Hasura, I’ve seen …
The post Creating Arrays in Hasura appeared first on CSS-Tricks.
You...
The Rules of Margin Collapse
30.12.2020
Josh Comeau covers the concept of margin collapsing:
This idea might sound simple, but if you’ve been writing CSS for a while, you’ve almost certainly been surprised when margins either don’t collapse, or they collapse in weird and unexpected ways.
…
The post The Rules...
Best Ways to Buy Bitcoin on Crypto.com
30.12.2020
Crypto.com is a leading cryptocurrency exchange that focuses on promoting the mass adoption of cryptocurrencies across all financial sectors. The company came into existence in 2016, having its headquarters in Hong Kong and is co-owned by Kris Marszalek, Rafael Melo, Gary Or, and Bobby Bao as...
Change vs. Inertia
18.12.2020
Recently, I’ve become more deeply aware of the inherent tension between change and inertia, as it applies to the evolution and use of web technologies. These forces have always been present and opposed to each other, but it seems to me that the side effects of these collisions are impacting...
Three Ways to Distinguish a Site From the Norm
16.12.2020
In an age where so much web design is already neat, clean, and simple, I can think of three ways to distinguish your site from the norm:
Stunning visuals that cannot be created in UI vector editors, like Figma and Sketch
Beautifully-animated interactions that cannot be dreamt in the language...
Venezuelan Crypto-Friendly Freelancing Platform Emerges Amid Economic Crisis, US Sanctions
10.12.2020
More cryptocurrency solutions keep appearing on the scene for Venezuelan residents as U.S. sanctions weigh on Nicolás Maduro’s government, including heavy restrictions on the circulation of foreign exchange transactions, driving people to find on crypto a way to circumvent such hurdles...
Vitalik Buterin expects lots of ways to exchange CBDCs for crypto
9.12.2020
Ethereum co-founder believes that CBDCs are good for macroeconomics, but there are also certain challenges
Overlaying Video With Transparency While Wrangling Cross-Browser Support
8.12.2020
As websites are becoming more and more dynamic when it comes to design, there is sometimes a need to incorporate complex, animated elements. There are many ways to do that from CSS transitions to 3D rendering on canvas, and animated SVG. But it is often easier to use a <video> since they...
3 key ways 2021's Bitcoin bull run may differ from 2017's
4.12.2020
Bitcoin price has overtaken its 2017 high, but should investors expect the top-ranked altcoins to do the same?
How to Make an Area Chart With CSS
2.12.2020
You might know a few ways to create charts with pure CSS. Some of them are covered here on CSS-Tricks, and many others can be found on CodePen, but I haven’t seen many examples of “area charts” (imagine a line chart with the bottom area filled in), particularly any in HTML and CSS alone. In this...
Lots of Ways to Use Math.random() in JavaScript
30.11.2020
Math.random() is an API in JavaScript. It is a function that gives you a random number. The number returned will be between 0 (inclusive, as in, it’s possible for an actual 0 to be returned) and 1 (exclusive, as in, it’s not possible for an actual 1 to be returned).
Math.random(); // returns...
EURST Stablecoin – Reinvention of the European Economy
28.11.2020
Over the years, we have been introduced to a digital transformation, which has created and shaped communities around the world. Digital technologies have introduced newly evolved ways of how the world interacts, operates, and most of all, conducts exchanges. In the current economic hardship and...
CZ: Binance traders find ‘intelligent’ ways to circumvent US block
13.11.2020
CZ admits it's not always easy weeding out US traders from the global Binance exchange
3 Ways Coinbase Could Lose Its Crypto Crown
10.11.2020
As Coinbase nears a possible IPO, the powerhouse exchange faces several big challenges, says Fortune senior writer Jeff Roberts
3 Ways Troubled Cred Aims To Repay Millions to Thousands of its Customers
9.11.2020
The troubled American crypto lending service Cred has suggested three ways the company could refund thousands of its customers after it filed for bankruptcy in Delaware this weekend.
In a Telegram post on its official channel, the firm wrote, that they "have come to the conclusion that it...
3 ways Bitcoin price and stocks may react to a Biden presidency
7.11.2020
Major media outlets have declared Joe Biden the winner of the 2020 election, leading analysts to speculate how a Biden presidency may impact Bitcoin price in 2021
Comparing Various Ways to Hide Things in CSS
27.10.2020
You would think that hiding content with CSS is a straightforward and solved problem, but there are multiple solutions, each one being unique.
Developers most commonly use display: none to hide the content on the page. Unfortunately, this way of hiding content isn’t bulletproof because now that...
xm
21.10.2020
This is a neat little HTML preprocessor from Giuseppe Gurgone. It has very few features, but one of them is HTML includes, which is something I continue to be baffled that HTML doesn’t support natively. There are loads of ways to handle it. I think it’s silly that it’s been...
Smarter Ways to Generate a Deep Nested HTML Structure
21.10.2020
Let’s say we want to have the following HTML structure:
<div class='boo'<div class='boo'<div class='boo'<div class='boo'<div class='boo'</div</div</div</div</div
That’s real a pain to write manually. And the reason why this post was born was being...
Comparing Styling Methods in 2020
19.10.2020
Over on Smashing, Adebiyi Adedotun Lukman covers all these styling methods. It’s in the context of Next.js, which is somewhat important as Next.js has some specific ways you work with these tools, is React and, thus, is a components-based architecture. But the styling methods talked about...