Advertisement ยท 728 ร— 90

Posts by Fabrizio Calderan

Post image Post image Post image Post image

Alcuni rompicapo matematici e atomici di fine anno (tratti da un post pubblicato su Telegram da mensnucleare
(t.me/mensnucleare/415) per chiunque voglia cimentarsi.

Per un 2026 ricco di fissioni!
#gonuclear

3 months ago 0 0 0 0

Please, consider and easier way to switch between accounts and provide landscape image on device rotation.

1 year ago 2 0 0 0
Preview
Accessible sortable list ...

I'm trying to code an accessibile sortable list widget.

It works quite well using a keyboard and a screen reader, but feedbacks would be really appreciated. #a11y

Demo: codepen.io/fcalderan/pe...

1 year ago 0 0 0 0

Absolutely.
My wife was diagnosed a breast cancer, but she underwent all the necessary medical treatments and now she is fine.

But it was a tough year, I'm glad it's over.

1 year ago 2 0 1 0
Venice, San Marco Place at sunset

Venice, San Marco Place at sunset

Venice, San Marco Place at sunset

Venice, San Marco Place at sunset

Venice, San Marco Place at sunset, today.

1 year ago 0 0 0 0
screenshot of the GUI which shows the syntax and makes the syntax interactive

screenshot of the GUI which shows the syntax and makes the syntax interactive

Chromium: Intent to Ship in v133
#CSS `text-box`, `text-box-trim` and `text-box-edge`

groups.google.com/a/chromium.o...

this feature is RAD.

try it in Canary with this syntax explorer visualizer tool I'm hackin on
codepen.io/argyleink/fu...

1 year ago 217 46 10 9

I was finally able to generate a chart about the Italy's grid consumption for the last 23 hours.

Next step is just to automate this, once per day.

1 year ago 0 0 0 0
Plain Vanilla An explainer for doing web development using only vanilla techniques.

Joeri has a dedicated website which gives you an overview of the major techniques used to make web sites and web applications without making use of build tools or frameworks.

plainvanillaweb.com

You should check it out.

1 year ago 15 3 2 1
Advertisement

It's literally the most recent technology we have to generate electricity.

1 year ago 0 0 0 0

CSS for detecting device posture ๐Ÿฅผ

@โ€‹media (device-posture: folded) {
h1 span:first-of-type { opacity: 0.25; }
}

some cool future opportunities ๐Ÿค™

1 year ago 249 46 16 8

Wait, is there no bookmark functionality in bluesky or am I missing something?

1 year ago 0 0 0 0
Ben Shanbrom - We Who Lament - Earthside Drum Playthrough
Ben Shanbrom - We Who Lament - Earthside Drum Playthrough YouTube video by Ben Shanbrom

Seriously, I thought Mike Portnoy was the best drummer in the world but Ben Shanbrom is definitely the most amazing drummer in whole galaxy, he can't be human.

m.youtube.com/watch?v=aUd0...

1 year ago 0 0 0 0
Preview
CSS Sharksweeper (a version of minesweeper with sharks) ...

A #CSS -only version of minesweeper (but made with sharks ๐Ÿฆˆ) using custom props and style queries.

You can arrange the sharks as you prefer to make a new pattern, the cells around with the hints will automatically update.

Codepen
codepen.io/fcalderan/fu...

1 year ago 1 0 0 0
Video

๐Ÿš€ New Interactive Article: Overflow Clip

Explore how overflow: clip works in CSS and see why itโ€™s useful with practical examples and demos.

๐Ÿ”— ishadeed.com/article/over...

1 year ago 128 34 0 8
The two options for getting a semitransparent version of currentColor:
box-shadow: 0 1px 2px rgba(from currentColor r g b / .35);
box-shadow: 0 1px 2px color-mix(in srgb, currentColor 35%, #0000);

The two options for getting a semitransparent version of currentColor: box-shadow: 0 1px 2px rgba(from currentColor r g b / .35); box-shadow: 0 1px 2px color-mix(in srgb, currentColor 35%, #0000);

#tinyCSStip
Want the shadow of an element or some other visual to be a semitransparent version of the `currentColor`, which was given as a hex or keyword value?

No need to convert to rgb() or hsl() anymore!

#CSS

1 year ago 61 5 4 1
Preview
Mens nucleare Aggregatore di informazioni e notizie sul mondo dell'energia nucleare e sul suo ritorno in Italia.

Ho creato un canale su Telegram, una raccolta curata di notizie sul mondo dell'energia #nucleare, informazioni e materiale divulgativo.

Se volete dare un'occhiata e/o iscrivervi il link รจ t.me/mensnucleare

1 year ago 0 0 0 0
Video

As of Chrome 131 you have more options to style `<details>` and `<summary>`.

You can now use of the `display` property on these elements, and also use a `::details-content` pseudo-element to style the part that expands and collapses.

developer.chrome.com/blog/styling...

1 year ago 541 89 16 15
Screenshot of the page with a "broken" stamp on it.

Screenshot of the page with a "broken" stamp on it.

For this edition of the CODE100 challenge, I built a web site with tons of accessibility issues. Send us your report what is broken and secure your place in the CODE100 final next year at the WeAreDevelopers World Congress.
www.wearedevelopers.com/magazine/fin...

1 year ago 4 2 0 0
Advertisement
A declaration block in CSS with the rules display: grid and  grid-template-columns: repeat(auto-fit,  minmax(var(--min, 30ch), 1fr));

A declaration block in CSS with the rules display: grid and grid-template-columns: repeat(auto-fit, minmax(var(--min, 30ch), 1fr));

One of my favorite 2-line #CSS snippets:

it creates a responsive grid layout with columns that automatically adjust in size. Each column has a minimum width of --min (`30ch` in the example) and expand up to `1fr` to fit the available space.

Code in action: codepen.io/fcalderan/fu...

1 year ago 1 0 0 0

Codepen link: codepen.io/fcalderan/pe...

1 year ago 0 0 0 0
Video

A #CSS hover effect by animating the grid-template-columns and gap properties of a 2-column grid element:

.link {
grid-template-columns: auto var(--len, 0fr);
gap: var(--gap, 0);
transition: .33s;
&:is(:hover, :focus) {
--len: 1fr;
--gap: .5rem;
}

Code in the reply ๐Ÿ‘‡๐Ÿป

1 year ago 0 0 1 0