Search
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,
...