Search
'Extreme Volatility' Expected as Bitcoin Investors Learn to Value It
29.9.2021
-tell-about-3156.htm">NVT), finding the correct way to value bitcoin (BTC) has proven tricky. But according to Nik Bhatia, Bitcoin advocate and author of Layered Money, there is no single way to go abou
Golem releases laptop app to mine Ethereum … but turning a profit is tricky
24.9.2021
Mining Ethereum on a home PC can be done, but profits will be few and far between
Robinhood Testing New Crypto Wallet and Cryptocurrency Transfer Features: Report
21.9.2021
Stock trading and investing app Robinhood has reportedly been testing new features, including a crypto wallet and cryptocurrency transfers. “The ability to deposit and withdraw cryptocurrencies is tricky to do with scale, and we want to make sure it’s done correctly...
13 Years Later, Fan Gets Tricky Zelda Record In Smash Bros.
25.8.2021
Legend of Zelda: Ocarina of Time is one of the most frequently, and thoroughly, speedrun games on the planet. Having been released almost 25 years ago, the game has been explored to death, and yet gamers find a way. There was one version of Ocarina of Time left undefeated for 13 years: the five...
Tabs in HTML?
17.8.2021
Brian Kardell shares a bit about the progress of bringing "Tabs" to HTML. We kinda think we know what they are, but you have to be really specific when dealing with specs and defining them. It's tricky.
The post Tabs in HTML? appeared first on CSS-Tricks. You can support CSS-Tricks by being an...
Cutouts
16.8.2021
Ahmad Shadeed dug into shape “cutouts” the other day. Imagine a shape with another smaller shape carved out of it. In his typical comprehensive way, Ahmad laid out the situation well—looking at tricky situations that complicate things.
The first thing …
The post Cutouts appeared...
The Tricky, Essential Art of Preserving Canceled Games Like Starfox 2
4.8.2021
What we know of history is preserved in the art we create, and what we leave behind. Cave paintings tell stories of great hunting feats, crumbling texts give us a glimpse into ancient cultures, and film reels show us how far life has come. In the same way, these artifacts represent the breadth...
Buterin’s $1B SHIB donation tricky to cash out, says fund manager
28.7.2021
Realizing Vitalik Buterin's $1 billion donation in Shiba Inu coins to the Covid Crypto Relief Fund in India has turned out to be a labyrinthine process for the fund's creator
Flash of inAccurate coloR Theme (FART)
16.4.2021
There is a lot to think about when implementing a dark mode theme on a website. We have a huge guide on it. There are some very clever quick wins out there, but there are also some quite tricky things …
The post Flash of inAccurate coloR Theme (FART) appeared first on CSS-Tricks.
You...
On Auto-Generated Atomic CSS
15.1.2021
Robin Weser’s “The Shorthand-Longhand Problem in Atomic CSS” in an interesting journey through a tricky problem. The point is that when you take on the job of converting something HTML and CSS-like into actual HTML and CSS, there are edge …
The post On Auto-Generated Atomic...
How to Get Sticky and Full-Bleed Elements to Play Well Together
4.12.2020
I had a unique requirement the other day: to build a layout with full-bleed elements while one element stays stuck to the top. This ended up being rather tricky to pull off so I’m documenting it here in case anyone needs to re-create this same effect. Part of the trickiness was dealing with logical...
A Dynamically-Sized Sticky Sidebar with HTML and CSS
20.11.2020
Creating page content that sticks to the viewport as you scroll, something like a jump-to-anchor menu or section headings, has never been easier. Throw a position: sticky into your CSS ruleset, set the directional offset (e.g. top: 0) and you’re ready to impress your teammates with minimal effort....
Backdrop Filter effect with CSS
16.7.2020
I love these little posts where some tricky-looking design is solved by a single line of CSS using a little-known property. In this case, the design is a frosted glass effect and the CSS property is backdrop-filter.
The approach? Easy peasy:
.container {
backdrop-filter: blur(10px);
}
The...
Irregular-shaped Links with Subgrid
16.7.2020
Michelle Barker covers a situation where you need offset rectangles part of a clickable area. The tricky part is having just the rectangles be clickable. That rules out using some parent element and making the whole larger encompassing rectangle clickable, which is a common (but equally tricky)...
Learn Z-Index Using a Visualization Tool
12.6.2020
There are some neat interactive demos in here from Thiru Manikandan. There are a couple of very tricky things with z-index that never fail to confuse. In addition to things like requiring positioning and source order, the trickiest are the stacking contexts and parent/child relationships. z-index...
Enable Gatsby Incremental Builds on Netlify
1.5.2020
The concept of an “incremental build” is that, when using some kind of generator that builds all the files that make for a website, rather than rebuilding 100% of those files every single time, it only changes the files that need to be changed since the last build. Seems like...
Animating CSS Width and Height Without the Squish Effect
6.3.2020
The first rule of animating on the web: don't animate width and height. It forces the browser to recalculate a bunch of stuff and it's slow (or "expensive" as they say). If you can get away with it, animating any transform property is faster (and "cheaper").
Butttt, transform can be tricky. Check...
Add Background Colors to SVGs Using the “rect” Element
20.2.2020
The advantages of using SVGs in web development are well known. SVGs are small in size, can be made quite accessible, are scalable while maintaining their quality, and can be animated. Still, there is a learning curve. Things, like the syntax of SVG, can be a little tricky and having to hand-alter...
How Do You Do max-font-size in CSS?
30.1.2020
CSS doesn't have max-font-size, so if we need something that does something along those lines, we have to get tricky.
Why would you need it at all? Well, font-size itself can be set in dynamic ways. For example, font-size: 10vw;. That's using "viewport units" to size the type, which will...
Apollo GraphQL without JavaScript
29.1.2020
It's cool to see progressive enhancement being done even while using the fanciest of the fancy front-end technologies.
This is a button in a JSX React component that has a click handler applied directly to it that fires a data mutation Ajax request through Apollo GraphQL. That is about the least...