Search
When a Click is Not Just a Click
30.6.2021
The click event is quite simple and easy to use; you listen for the event and run code when the event is fired. It works on just about every HTML element there is, a core feature of the DOM API.…
The post When a Click is Not Just a Click appeared first on CSS-Tricks. You can support...
Fixing a Bug in Low-Resolution Mode
30.6.2021
I was working on a bug ticket the other day where it was reported that an icon was sitting low in a button. Just not aligned like it should be. I had to go on a little journey to figure …
The post Fixing a Bug in Low-Resolution Mode appeared first on CSS-Tricks. You can support CSS-Tricks...
What does `font: 110%/1.4 system-ui` mean?
30.6.2021
I use this line, or one like it, in a lot of quick demos. Not that it’s not a production-worthy line of code—I just tend to be a bit more explicit on bigger projects.
html {
font: 110%/1.4 system-ui;
}
…
The post What does `font: 110%/1.4 system-ui` mean? appeared first...
Chromium spelling and grammar features
29.6.2021
Delan Azabani digs into the (hopefully) coming soon ::spelling-error and ::grammar-error pseudo selectors in CSS. Design control is always nice. Hey, if we can style scrollbars and style selected text, why not this?
The squiggly lines that indicate...
:nth-child Between Two Fixed Indexes
29.6.2021
I needed to select some elements between two fixed indexes the other day — like literally the second through fifth elements. Ironically, I have a whole post on “Useful :nth-child Recipes” but this wasn’t one of them.
The answer, it …
The post :nth-child Between Two Fixed...
Dogecoin (DOGE) Takes Support from Lower Levels!
29.6.2021
Dogecoin or Memcoin has been one of the most talked-about cryptocurrencies in 2021. After making a substantial up move in 2021, the second-half rally, or after May, has been subdued by numerous factors such as decreasing valuations. The negative trend in the overall crypto market pushed DOGE from...
Elon Musk Says ‘Important to Support’ Dogecoin Fee Change Proposal
29.6.2021
A fee change proposal for Dogecoin has been submitted and Tesla CEO Elon Musk says that it is “important to support” it. “This document proposes a new fee structure and policy for Dogecoin Core, to be gradually deployed to the network over multiple software releases,” said...
System *Things
29.6.2021
I think we’re all largely aware of named colors in CSS:
color: OldLace;
background: rebeccapurple;
I guess you’d just call those “named colors” in CSS.
Those aren’t the only kind of named colors there are though. Some of them …
The post System *Things appeared...
Elon Musk tweets his support over proposed Dogecoin changes
29.6.2021
Dogecoin got a price bump Monday out of another Elon Musk tweet, this time in support of a proposed update
Working around the viewport-based fluid typography bug in Safari
28.6.2021
Sara digs into a bug I happened to have mentioned back in 2012 where fluid type didn’t resize when the browser window resized. Back then, it affected Chrome 20 and Safari 6, but the bug still persists today in Safari …
The post Working around the viewport-based fluid typography bug...
Positioning Overlay Content with CSS Grid
28.6.2021
Not news to any web developer in 2021: CSS Grid is an incredibly powerful tool for creating complex, distinct two-dimensional modern web layouts.
Recently, I have been experimenting with CSS Grid and alignment properties to create component layouts that …
The post Positioning Overlay Content...
Scaling Organizations Should Consider Building a Website Backed by a CRM Platform
28.6.2021
To make some terminology clear here:
CMS = Content Management System
CRM = Customer Relationship Management
Both are essentially database-backed systems for managing data. HubSpot is both, and much more. Where a CMS might be very focused on content and …
The post Scaling Organizations...
DigiByte (DGB) Taking Support From Lower Levels
28.6.2021
DigiByte (DGB) was originally put forward in 2013 and began offering its services in 2014. In the last seven years, the blockchain network and its security have improved by a considerable margin. It uses five cryptographic algorithms and real-time difficulty adjustments to control malicious mining...
4 ways investors use support and resistance levels to make better trades
28.6.2021
Properly identifying support and resistance levels can be the difference between a winning trade and significant losses
The Crypto Climate Accord Walks a Fine Line Between Self-Interest and the Greater Good
27.6.2021
As the spotlight turns once again towards the environmental impact of blockchain technologies, support for the Crypto Climate Accord has come from curious corners of the industry, raising questions about its signatories’ motives. Authenticity of CCA’s Support Remains Debatable With...
Custom Property Brain Twisters
25.6.2021
I am part of that 82% that got the answer to Lea Verou's quiz wrong. Stephen Shaw posted a similar quiz as well and it's a fun exercise sharpen your CSS chops.
The post Custom Property Brain Twisters appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter
Opera announces support for Celo stablecoins in its crypto wallet app
25.6.2021
Opera has added Celo-based stablecoins to the list of supported assets in its wallet app
How to Cancel Pending API Requests to Show Correct Data
25.6.2021
I recently had to create a widget in React that fetches data from multiple API endpoints. As the user clicks around, new data is fetched and marshalled into the UI. But it caused some problems.
One problem quickly became evident: …
The post How to Cancel Pending API Requests to Show Correct...
Chapter 9: Community
24.6.2021
In April of 2009, Yahoo! shut down GeoCities. Practically overnight, the once beloved service had its signup page replaced with a vague message announcing its closure.
We have decided to discontinue the process of allowing new customers to sign up
…
The post Chapter 9: Community appeared...
TablesNG — Improvements to table rendering in Chromium
23.6.2021
When I blogged “Making Tables With Sticky Header and Footers Got a Bit Easier” recently, I mentioned that the “stickiness” improvement was just one of the features that got better for <table>s in Chrome as part of the TablesNG upgrade…
The post TablesNG...