Search
Solving Background Overflow With Inherited Border Radii
17.10.2024
One of the interesting (but annoying) things about CSS is the background of children’s elements can bleed out of the border radius of the parent element. Here’s an example of a card with an inner element. If the inner element …
Solving Background Overflow With Inherited Border Radii...
Another Stab at Truncated Text
3.9.2024
Seems like we’re always talking about clipping text around here. All it takes is a little browsing to spot a bunch of things we’ve already explored.
Article
on
Sep 19, 2012
Multi-line Text Overflow Ellipsis
accessibility content...
Elastic Overflow Scrolling
21.8.2024
A client asked if we could mimic the “rubber band” scrolling behavior on many mobile devices. I’m sure you know what I’m talking about. It’s a behavior that already exists and happens automatically in most browsers. In iOS Safari, for …
Elastic Overflow Scrolling...
Bugs in Gains Network fork let traders profit 900% on every trade: Report
9.5.2024
An attacker could have placed a limit buy order with an arbitrarily high open price to automatically win every trade, the Zellic security platform discovered
Solana Price Prediction as SOL Reaches Highest Level Since December 2021 – Can SOL Overtake Ethereum?
16.3.2024
Amidst a roaring market, Solana (SOL) soars to new heights since December 2021; can it surpass Ethereum in the race of giants?
The post Solana Price Prediction as SOL Reaches Highest Level Since December 2021 – Can SOL Overtake Ethereum? appeared first on Cryptonews
Bitcoin Price Prediction as BTC Reaches Highest Level Since December 2021 – $250,000 BTC Incoming?
27.2.2024
As Bitcoin soars past December 2021 peaks, whispers of a $250,000 milestone grow louder. Can the digital titan breach this epic threshold?
The post Bitcoin Price Prediction as BTC Reaches Highest Level Since December 2021 – $250,000 BTC Incoming? appeared first on Cryptonews
Bitcoin Price Prediction as Judge Approves Binance’s $4.3 Billion Plea Deal – Can Bull Market Resume Now?
24.2.2024
After Binance's substantial plea agreement, Bitcoin's market resilience is tested. Will this pave the way for a bullish resurgence?
The post Bitcoin Price Prediction as Judge Approves Binance’s $4.3 Billion Plea Deal – Can Bull Market Resume Now? appeared first on Cryptonews
Dev platform Stack Overflow axes 28% of staff as AI competition grows
17.10.2023
The technology Q&A forum has seen declines in web traffic since the launch of ChatGPT in 2022
Návštěvnost největší odborné poradny Stack Overflow se propadá. Má ji zachránit OverflowAI
28.7.2023
Stack Overflow, největší odborná poradna na internetu, se dlouho bránila nespolehlivým odpovědím, které vytváří současná generace AI chatbotů, nakonec si ale vytvoří vlastního. Šéf firmy Prashanth Chandrasekar na blogu oznámil vývoj technologie OverflowAI.
Ve své podstatě se jedná o obdobu
Seznam uvolnil zdrojáky své homepage, zákaz ChatGPT na Stack Overflow, samoopravy Applu v Evropě
9.12.2022
Proton Drive pro mobily. Jak se ruský operátor potýká se sankcemi. Nekonečné skrolování na Googlu. TSMC v Arizoně investuje 40 miliard dolarů. Zprávy z IT, každý pátek na Lupě
A Couple Changes Coming in Chrome 108
4.11.2022
“A change to overflow on replaced elements in CSS”:
From Chrome 108, the following replaced elements respect the overflow property: img, video and canvas. In earlier versions of Chrome, this property was ignored on these elements.
This
…
A Couple Changes...
Recreating MDN’s Truncated Text Effect
28.7.2022
It’s no secret that MDN rolled out a new design back in March. It’s gorgeous! And there are some sweet CSS-y gems in it that are fun to look at. One of those gems is how card components handle truncated …
Recreating MDN’s Truncated Text Effect originally published...
Text-overflow: ellipsis considered harmful
30.6.2022
Eric Eggert:
There are a few legitimate use cases for this technique. For example, you might have a table with titles and descriptions. To preserve more space for the title, you constrain the description to one line on small
…
Text-overflow: ellipsis considered harmful originally...
The First 12 Minutes Of Madshot: An Acrobatic Action Rogue-Like
10.6.2022
Read more
2021 Roundup of Web Research
23.12.2021
Last year, we kicked out a roundup of published surveys, research, and other findings from around the web. There were some nice nuggets in there, like a general sentiment that the web needs more documentation, Tailwind CSS dun …
Embracing Asymmetrical Design
20.9.2021
I’ll never forget one of Karen McGrane’s great lessons to the world: truncation is not a content strategy. The idea is that just clipping off text programmatically is a sledgehammer, and avoids the kind of real thinking and planning that …
The post Embracing Asymmetrical Design...
[článek] Huawei vydává náhradu za Android, Stack Overflow prodán, čipy nebudou možná i roky
4.6.2021
[5 minut čtení] Nové grafiky Nvidia RTX 3070 Ti a 3080 Ti. Cloudera prodána. Novinky AMD a Intelu z Computexu. Nejrychlejší AI superpočítač. Zprávy z IT, každý pátek na Lupě. Vždy v pátek připravuje reportér Jan Sedlák výběr zajímavých zpráv ze světa IT. Co se událo v tomto týdnu?
Detect CSS Overflow Elements
8.4.2021
Every once in a while you encounter a CSS annoyance that takes some cleverness to discover. One such case rears its ugly head in unwanted and unexpected scrollbars. When I see unwanted scrollbars, I usually open developer tools, click the element inspector, and hover around until I find...
Full Bleed
15.10.2020
We’ve covered techniques before for when you want a full-width element within a constrained-width column, like an edge-to-edge image within a narrower column of text. There are loads of techniques.
Perhaps my favorite is this little utility class:
.full-width {
width: 100vw;
position:...
Using Flexbox and text ellipsis together
22.7.2020
You can truncate a single line of text with an ellipsis (…) fairly easily with text-overflow and a few friends. But, as you might expect, that truncation happens at the end of the line of text. What if you want to truncate content in the middle?
Leonardo Faria details good use cases for this...