Search
A Few Background Patterns Sites
18.3.2020
If I need a quick background pattern to spruce something up, I often think of the CSS3 Patterns Gallery. Some of those are pretty intense but remember they are easily editable because they are just CSS. That means you could take these bold zags and chill them out.
CodePen Embed Fallback
My usual...
Flexbox and absolute positioning
18.3.2020
Chen Hui Jing notes that when you absolutely position a flex item, it's no longer part of the flex layout. Except... it kinda is a little bit. If you make the child position: absolute; but don't apply any top/right/bottom/left properties, then flexbox alignment will still apply to it.
It's odd...
Binance Lending Adds Bitcoin Cash to Flexible Deposits Letting Users Earn Interest on BCH
18.3.2020
Bitcoin cash users now have another venue to earn interest on their digital asset holdings. Binance has added support for BCH flexible deposits on its lending platform, alongside ETH and EOS. This development comes just as competition in the crypto lending field is heating up. Also Read: Binance...
A Complete Guide to calc() in CSS
17.3.2020
CSS has a special calc() function for doing basic math. Here's an example:
.main-content {
/* Subtract 80px from 100vh */
height: calc(100vh - 80px);
}
In this guide, let's cover just about everything there is to know about this very useful function.
calc() is for values
The only place you...
How to Simulate Long HTTP Requests
17.3.2020
It happens less frequently these days but there are times when we need to accommodate for a HTTP request timing out. The service could be down, under heavy traffic, or just poorly coded, or any host of other issues. Whenever I need to simulate a long HTTP request, I use a bit of PHP...
WooCommerce 4.0 & WooCommerce Payments Beta
17.3.2020
Y'all know WooCommerce: it's a plugin for WordPress that adds robust eCommerce functionality to your site. Notably, like WordPress itself, it's open-source and free. You only pay for things if you need things like special plugins that extend functionality.
This is a huge month for WooCommerce!...
CoinMarketCap Expands Ratings and On-chain Data on Site With New Partners
17.3.2020
We just launched our on-site partnership with Crypto Briefing, TokenInsight and IntoTheBlock to provide data on cryptoasset ratings and on-chainContinue Reading
The post CoinMarketCap Expands Ratings and On-chain Data on Site With New Partners appeared first on CoinMarketCap Blog
Binance Coin Consolidates Just Above its 52 Week Low Price Mark
17.3.2020
Yesterday’s price plunge seems to be recovered for Binance Coin as it has reached where it was the day before yesterday. The currency went as low as $8.46 yesterday, and from there, BNB price has managed to surge above $10. Meanwhile, Bitcoin has traded above $5000 today, and yesterday’s lowest...
How Many Women Users Before Crypto Is Not Sexist?
17.3.2020
A recent headline on Micky — an iconoclastic media outlet that focuses on cryptocurrency — read “Crypto Twitterstorm: ‘Creepy sexist trolling’ or just a funny meme?” The article explained, “A post making fun of Blockstream’s Samson Mow has sparked...
CSS X
17.3.2020
My name appears in an article from Bert Bos (co-author of the original CSS spec), so I'll consider that a life accomplishment. Berts makes the point that CSS has evolved and the working group versions things, but the working group hasn't been and doesn't really plan to be involved in these...
How to Make Repeating Border Images
16.3.2020
I just saw this cool little site from Max Bittker: broider. You design an image on a 9-slice grid (except the middle part) and it will produce an image for you to use with border-image along with the CSS to copy and paste.
Check out my little design:
CodePen Embed Fallback
The areas of the image...
The CSS Podcast
15.3.2020
From Adam and Una at Google, a podcast just about CSS. I believe I'm contractually obliged to link to that! Just one episode out so far, a shorty about the box model.
Last time I wrote up podcasts I like was 8 years ago most of them are dead now, except the biggies like This American Life and...
Market Update: Cryptocurrency Market Cap Sheds $90B, Margin Calls Spike, Futures Slide
14.3.2020
Digital currency markets have been consolidating since Thursday’s massive price drop after more than $90 billion was erased from the cryptoconomy. Crypto markets saw some brief gains on Friday but prices have been meandering just above current support levels. At the moment, traders and crypto...
“weeds of specificity”
13.3.2020
Lara Schenck:
[...] with WordPress child themes, you are all but guaranteed to get into the weeds of specificity, hunting around theme stylesheets that you didn’t author, trying to figure out what existing declaration is preventing you from applying a new style, and then figuring out the least...
Disney World Economics: How Coronavirus Could Be Used to Justify a Global Financial Reset
13.3.2020
‘What in the world is going on’ has now become a question of real pertinence, instead of just a cliché for common bewilderment. As COVID-19 panic grips the world, ripple effects are crashing markets and effectively canceling economies across the globe, scrawling the writing on...
Two Steps Forward, One Step Back
12.3.2020
Brent Jackson says CSS utility libraries failed somewhat:
Eventually, you'll need to add one-off styles that just aren't covered by the library you're using, and there isn't always a clear way to extend what you're working with. Without a clear way to handle things like this, developers tend...
Programming Sass to Create Accessible Color Combinations
12.3.2020
We are always looking to make the web more accessible. Color contrast is just math, so Sass can help cover edge cases that designers might have missed.
The post Programming Sass to Create Accessible Color Combinations appeared first on CSS-Tricks
Bitcoin Price Is Now Up Just 8% This Year
11.3.2020
Bitcoin’s recent price drop in line with traditional markets has erased a major portion of its year-to-date gains
Block Links Are a Pain (and Maybe Just a Bad Idea)
10.3.2020
As we noted in our complete guide, you can put an <a href=""> link around whatever chunks of HTML you like. Let's call that a "block link." Like you are wanting to link up an entire "Card" of content because it makes a big clickable target.
<a href="/article/"<!-- display: block;...
Considerations When Choosing Fonts for a Multilingual Website
10.3.2020
As a front-end developer working for clients all over the world, I've always struggled to deal with multilingual websites — especially cases where both right-to-left (RTL) and left-to-right (LTR) are used. That said, I’ve learned a few things along the...