Search
After Fed Members Disclose Million-Dollar Stock Trades Fed’s Powell Initiates Ethics Inquiry
17.9.2021
The Federal Reserve chairman Jerome Powell has directed his staff to start an ethics inquiry into the financial activities of Fed members, as a number of senior central bank officials are being questioned for their investments. Reports indicated last week that the president of the Dallas Federal...
South Korean Ruling Party Squabbles over Crypto Tax
17.9.2021
tax code, which will see a flat rate of 20% tax levied on crypto tax profits of over USD 2,100 a year. If unamended, this change will come into force on January 1, 2022.But the ruling Democratic Party is wary of a backlash from angry voters aged 20-39 – the backbone of the party’s support –
SushiSwap's MISO Suffers USD 3M Attack, Contract Thefts May Rise
17.9.2021
en attacked. Per his words, this was a supply chain attack, with an anonymous contractor, who’s using the GitHub handle ‘AristoK3’, injecting a malicious code into Miso’s front-end.As for the identity behind this handle, Delong said that they “have reason to believe” it’s the Twitter user ‘er
Korean Finance Minister vows to fight moves to delay the crypto tax code
17.9.2021
The ruling party is planning to attempt a postponement of the crypto tax laws but the Finance Minister is not for turning
Shadow Roots and Inheritance
16.9.2021
There is a helluva gotcha with styling a <details> element, as documented here by Kitty Guiraudel. It’s obscure enough that you might never run into it, but if you do, I could see it being very confusing (it would confuse …
The post Shadow Roots and Inheritance appeared first...
Minding the “gap”
16.9.2021
You might already know about the CSS gap property. It isn’t exactly new, but it did gain an important new ability last year: it now works in Flexbox in addition to CSS Grid. That, and the fact that I …
The post Minding the “gap” appeared first on CSS-Tricks. You can support...
kbar
15.9.2021
It’s not every day that a new pattern emerges across the web, but I think cmd + k is here to stay. It’s a keyboard shortcut that usually pops open a search UI and it lets you toggle settings on …
The post kbar appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter
On the `dl`
15.9.2021
Blogging about HTML elements¹? *chefs kiss*
Here’s Ben Myers on the (aptly described) “underrated” Definition List (<dl>) element in HTML:
You might have also seen lists of name–value pairs to describe lodging amenities, or to list
…
The post On the `dl` appeared...
Mining Is Not Banned in Ukraine and Does Not Require Licensing, Key Crypto Advisor Says
13.9.2021
The regulatory status of cryptocurrency mining remains somewhat undetermined in Ukraine, even after the recent adoption of the law “On Virtual Assets.” However, albeit unregulated, the minting of digital coins isn’t prohibited either, according to a leading advisor on crypto...
“Just in Time” CSS
10.9.2021
I believe acss.io is the first usage of “Atomic CSS” where the point of it is to be a compiler. You write CSS like this:
<div class="C(#fff) P(20px)"text
</div
And it will generate CSS like:
.C\(\#333\) {
color: #333;
…
The post “Just in Time” CSS appeared...
Don’t attach tooltips to document.body
8.9.2021
Here’s Atif Afzal on using a <div> that is permanently on the page where tooltips are added/removed and how they perform vastly better than plopping those same tooltips right into the <body>. It’s not really discussed, but the reason …
The post Don’t attach...
Fire SVG animations (SMIL) when the SVG is visible
7.9.2021
When requirements read “when visible” your brain should go straight to IntersectionObserver. That’s exactly what Zach is doing here to kick off an animation when it scrolls into view.
Except this animation is an SVG SMIL animation: an <animate>…
The post Fire...
Firefox’s `bolder` Default is a Problem for Variable Fonts
7.9.2021
Variable fonts make it easy to create a large set of font styles from a single font file. Unfortunately, the default rendering of the <b> and <strong> elements in browsers today is not very compatible with the wide range of …
The post Firefox’s `bolder` Default is a Problem...
Guardian Link Announces Partnership With BeyondLife.Club, Launching Amitabh Bachchan’s NFT Collection
7.9.2021
PRESS RELEASE. No-code NFT platform Guradianlink.io announces its strategic partnership with Beyondlife.Club, an exclusive platform for artists, brands, and celebrities from different fields of entertainment. 7th September 2021, Singapore — Influential Indian actor, producer, and TV host...
Early Days for CSS Scoping
6.9.2021
There is a working draft spec for CSS scoping now, a newsworthy event for the W3C. Other than a weird period where <style scoped shipped and then was subsequently removed from the spec (and browsers), this is the furthest a …
The post Early Days for CSS Scoping appeared first...
Links on Performance IV
3.9.2021
HTTP Caching is a Superpower — Hugh Haworth covers how the Cache-Control header is an awfully potent ingredient in web performance. I mis-read the title at first and was waiting to read about HTML caching. Hugh covers it a bit
…
The post Links on Performance IV appeared first...
ShapeShift open-sources its upcoming version 2 platform code
2.9.2021
The Erik Voorhees-led company is making strides to fully decentralize its corporate structure. In July, ShapeShift announced the largest airdrop in history as part of its decentralization pledge
You don’t need external assets in an HTML file
2.9.2021
A fun exercise from Terence Eden. You can send an HTML file over the wire including anything a website might need without requesting any other files. CSS and JavaScript are easy, because there are <script and <style tags. Images and …
The post You don’t need external assets...
Twitter Rolling Out Bitcoin Tipping Feature, Latest Code Update Suggests
1.9.2021
Twitter is reportedly testing the option of tipping with bitcoin as part of its “Tip Jar” feature. This followed the company’s CEO, Jack Dorsey, stating that bitcoin is a major part of Twitter’s future, hinting that the cryptocurrency will be part of several upcoming...
You want enabling CSS selectors, not disabling ones
31.8.2021
I think this is good advice from Silvestar Bistrović:
An enabling selector is what I call a selector that does a job without disabling the particular rule.
The classic example is applying margin to everything, only to have to remove …
The post You want enabling CSS selectors, not disabling...