Search
You want minmax(10px, 1fr) not 1fr
22.1.2021
There are a lot of grids on the web like this:
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
My message is that what they really should be is:
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(10px, 1fr));
}
Why? In …
The post You want minmax(10px, 1fr)...
Dear Crypto Derivatives Industry, Let’s Not Repeat 2008
20.1.2021
As the crypto derivatives industry begins to take off, it needs to avoid the lack of transparency that plagued the industry in the 2000s, when the financial system collapsed
OKEx CEO Says Exchange Updating Procedures to Prevent Repeat of Withdrawal Freeze Issue
2.12.2020
Jay Hao pledged in an AMA that his firm has taken steps to ensure that cryptocurrency withdrawals can't again be stuck by the absence of a key holder
Bitcoin ‘Black Thursday’ Repeat Unlikely as Exchanges Have Less BTC
19.8.2020
On-chain data suggests Bitcoin price will not see a Black Thursday repeat as the amount of BTC held at exchanges has dropped to a 2020 low
Accordion Rows in CSS Grid
23.7.2020
I’d bet grid-template-columns is used about 10× more than grid-template-rows, but maybe everyone has just been missing out. Eric Meyer chucks a bunch of row lines onto his main site layout grid like this:
grid-template-rows: repeat(7, min-content) 1fr repeat(3, min-content);
That way, if...
Bitcoin Volatility Hits 2018 Lows but Is a Repeat 42% Drop Possible?
21.7.2020
Traders remain cautious as Bitcoin’s current lack of volatility is similar to November 2018 when low trading volume resulted in a 42% drop
Bitcoin Gold Copycat Rally ‘Just Started’ Amid Worries of March Repeat
9.7.2020
Growing belief in Bitcoin following gold higher contrasts with chart analysis, which shows multiple weaknesses remain
CSS background-repeat: round
23.6.2020
The CSS spec is full of gems that sneak their way past most of us web designers and developers. Stuff like :focus-within, prefers-reduced-motion, and prefers-color-scheme suddenly make their way into CSS without us really finding out for months or years. One such example is background-repeat:...
Just another +1 for subgrid
19.6.2020
I’d say 85% of my grid usage is in one of these two categories…
I just need some pretty basic (probably equal width) columns that ends up being something like like grid-template-columns: repeat(3, minmax(0, 1fr)); to be safe.
Actually doing some real layout where five minutes in...
Square Dollar Cost Averaging Lets Users Repeat Buy Bitcoin in Cash App
19.5.2020
Bitcoin and stocks are now on the menu for Cash App users wanting to minimize the “impact of market swings,” the payment network says
Will 2019 BTC trend repeat itself on Halving Day?
11.5.2020
Bitcoin, at the time of writing this analysis, was trading below $9k around $8.6k and has drawn a bearish candlestick and retested 10-day long support at $8.1k. With less than 10 hours (according to IST time) left for the 3rd Bitcoin Halving, BTC price has not shown any rebound after a massive...
How They Fit Together: Transform, Translate, Rotate, Scale, and Offset
30.3.2020
Firefox 72 was first out of the gate with "independent transforms." That is, instead of having to combine transforms together, like:
.el {
transform: rotate(10deg) scale(0.95) translate(10px, 10px);
}
...we can do:
.el {
rotate: 10deg;
scale: 0.95;
translate: 10px 10px;
}
That's extremely...
How to Repeat Text as a Background Image in CSS Using element()
26.3.2020
There’s a design trend I’ve seen popping up all over the place. Maybe you’ve seen it too. It’s this sort of thing where text is repeated over and over. A good example is the price comparison website, GoCompare, who used it in a major multi-channel advertising campaign.
Nike has used it as well...
Flexible Repeating SVG Masks
22.3.2020
Tyler Gaw reminds us that mask-image can repeat, resize, and move just like background-image does, which is fun to combine and play with. I could see it being a fun option for an <hr, like Sara is doing.
CodePen Embed Fallback
Direct Link to Article — Permalink… Read article...
Bitcoin Slides 15% to $4.5K as Stocks Brace for ‘Black Monday’ Repeat
16.3.2020
Bitcoin stays bearish as a new “Black Monday” scenario gets underway across global markets
Smaller HTML Payloads with Service Workers
31.1.2020
Short story: Philip Walton has a clever idea for using service workers to cache the top and bottom of HTML files, reducing a lot of network weight.
Longer thoughts: When you're building a really simple website, you can get away with literally writing raw HTML. It doesn't take long to need a...
Resizing Values in Steps in CSS
30.1.2020
There actually is a steps() function in CSS, but it's only used for animation. You can't, for example, tell an element it's allowed to grow in height but only in steps of 10px. Maybe someday? I dunno. There would have to be some pretty clear use cases that something like background-repeat: space...
Will Bitcoin SV Repeat Pump & Dump of 2019?
14.1.2020
Craig Wright. Source: a video screenshot, Youtube, Crypto Finder
Rumors about the self-proclaimed Satoshi Nakamoto, Australian computer scientist Craig Wright have seemingly fuelled a rally of more than 100% in Bitcoin SV (BSV) – the cryptocurrency backed by Wright – over the past seven days.
A...
Will Bitcoin Halving Pattern Repeat Itself This Year?
12.1.2020
Juan Villaverde is an econometrician and mathematician devoted to the analysis of cryptocurrencies since 2012. He leads the Weiss Ratings team of analysts and computer programmers who created Weiss cryptocurrency ratings.
_____
In financial markets, it’s rarely possible to know, in advance...
Jetpack Slideshow Block
7.1.2020
One of the many (many) useful things that Jetpack does is give you extra-fancy custom blocks in the WordPress block (AKA Gutenberg) editor: a slideshow, business hours, contact info, GIF, Mailchimp, Map, Markdown, Pinterest, Star Rating, Recurring Payments Button, Repeat Visitor, Simple Payments...