Search
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...
Bitcoin Fails to Repeat the History it Created 2 Years Back; Dips to $6,500
18.12.2019
Bitcoin trades at $6,610.60—marking half of the highest price hit this year. The fun fact here is that exactly today, Bitcoin had hit $20,000 (all-time high) two years back in 2017 and currently, two years down the line, we have a moderate adoption of cryptocurrency as the price plummets. Take...
Ether Price Breaks Key Resistance — Can It Repeat Bitcoin’s 42% Gain?
7.11.2019
Ether could be on the verge of powerful upside break if it can break the 20-WMA and hold above $199
Malta’s Financial Watchdog Warns of Repeat Offender Bitcoin Scam
31.10.2019
The Malta Financial Services Authority says a Bitcoin scam has resurfaced under a different guise
Intrinsically Responsive CSS Grid with minmax() and min()
31.7.2019
The most famous line of code to have come out of CSS grid so far is:
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
Without any media queries, that will set up a grid container that has a flexible number of columns. The columns will stretch a little, until there is enough room...
Managing Multiple Backgrounds with Custom Properties
15.7.2019
One cool thing about CSS custom properties is that they can be a part of a value. Let's say you're using multiple backgrounds to pull off a a design. Each background will have its own color, image, repeat, position, etc. It can be verbose!
You have four images:
body {
background-position:
...
Waves (WAVES) Price Analysis: Waves To Repeat The 900% Return By 2023
22.5.2019
Waves which gave a 900 % return in two years between 2017 and 2018 surging from 0.68 USD to 6.88 USD is set to repeat it by 2023. It means it will reach a price of 24 USD from its current trading price of 2.5 USD. It is predicted to reach that level based on …
The post Waves (WAVES) Price...
Bitcoin Price Chart Shows Similar Movements as in 2017: Will History Repeat Itself?
13.5.2019
Bitcoin (BTC) is currently trading at a price mark above $7000 in the cryptomarket. The bulls have been virtuoso, not degrading the rank Bitcoin has been maintaining since inception. Bitcoin alone is making it big and adding some $25 billion to the overall cryptocurrency market capitalization after...
A responsive grid layout with no media queries
9.5.2019
Andy Bell made a really cool demo that shows us how to create a responsive grid layout without any media queries at all. It happens to look like this when you change the size of the browser window:
I think this is a wonderful layout technique that’s just 6 lines (!) of CSS.
.auto-grid...
You probably don’t need input type=“number”
29.3.2019
Brad Frost wrote about a recent experience with a website that used <input type="number">:
Last week I got a call from my bank regarding a wire transfer I had just scheduled. The customer support guy had me repeat everything back to him because there seemed to be a problem with...
Multiple Background Clip
30.1.2019
You know how you can have multiple backgrounds?
body {
background-image:
url(image-one.jpg),
url(image-two.jpg);
}
That's just background-image. You can set their position too, as you might expect. We'll shorthand it:
body {
background:
url(image-one.jpg) no-repeat top right,
...