Ana Tudor's Avatar

Ana Tudor

@anatudor

Same me, another platform. Authentic Transylvanian vampire. I code stuff. Usually involves some Maths. I enjoy music mandatory religion classes warned me about. And other things that may kill me. Replies usually restricted. https://thebabydino.github.io/

5,553
Followers
68
Following
3,338
Posts
01.06.2023
Joined
Posts Following

Latest posts by Ana Tudor @anatudor

Preview
I am in an abusive relationship with the technology industry Some things I'm struggling with in the technology industry, an appreciation for folk music, and some other thoughts.

I wrote about some things I'm struggling with in the technology industry, preceded by an appreciation for folk music.

06.03.2026 15:37 πŸ‘ 111 πŸ” 32 πŸ’¬ 15 πŸ“Œ 7

Y'all probably already knew this, but I just put it together that SVGs don't have a hidden property in JS.

```js
myDiv.hidden = true // works, hides it
mySVG.hidden = true // no worky, does nothing
```

Excuse me while I refactor a bunch of code....

06.03.2026 21:19 πŸ‘ 12 πŸ” 2 πŸ’¬ 1 πŸ“Œ 0
Post image

The sweetest bobcat snuggle we ever did see! πŸ₯°

Rescued bobcats, Tanner and Tahoma, are showing that even wild cats have a soft side. Bobcats may be known for their stealth and independence, but moments like this remind us they also share strong bonds. 🐾

πŸ“Έ: Keeper Carly

06.03.2026 22:27 πŸ‘ 30 πŸ” 7 πŸ’¬ 0 πŸ“Œ 0

Why in Beelzebub's name would you leave your DMs open... 😭

07.03.2026 01:25 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Definitely not how I'll be spending the next couple of days, but enjoy the superb photo 🀍

06.03.2026 18:46 πŸ‘ 4 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
You Know What? Just Don’t Split Words into Letters This is an unplanned part two for Barriers from Links with ARIA. The title reflects my exasperation because this isn’t new, I’ve simply failed to be explicit about it over the last decade or so. In…

You Know What? Just Don’t Split Words into Letters: "If you need to split words into their constituent letters to adjust kerning, apply gradients, animate them, or whatever, find another method, because screen readers will present the words letter by letter." #a11y adrianroselli.com/2026/02/you-...

06.03.2026 18:03 πŸ‘ 3 πŸ” 3 πŸ’¬ 0 πŸ“Œ 0
Video thumbnail

Fruit Day Friday!

06.03.2026 16:28 πŸ‘ 53 πŸ” 12 πŸ’¬ 1 πŸ“Œ 1
DEATH ANGEL - "Lost" (OFFICIAL MUSIC VIDEO)
DEATH ANGEL - "Lost" (OFFICIAL MUSIC VIDEO) YouTube video by Nuclear Blast Records

Mood www.youtube.com/watch?v=GVYl...

05.03.2026 11:30 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

if you see this, do it!

β˜† pronouns: Stop
β˜† height: Giving
β˜† zodiac: Out
β˜† smoke: Personal
β˜† tattoos: Information
β˜† piercings: In
β˜† fav colour: Online
β˜† fav drink: Chains

05.03.2026 02:26 πŸ‘ 14 πŸ” 3 πŸ’¬ 0 πŸ“Œ 1
LYRIEL - Leverage (2012) // Official Music Video // AFM Records
LYRIEL - Leverage (2012) // Official Music Video // AFM Records YouTube video by AFM Records

Songs are about what you want them to be www.youtube.com/watch?v=vFiN...

04.03.2026 18:07 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

You may not need that β€œAI” voice thing that reads your web pages aloud to users. It comes free in the browser:

β€’ Edge’s Read Aloud (Ctrl + Shift + U),
β€’ Firefox’s and Chrome’s reader mode text-to-speech,
β€’ Safari’s Speech feature.

Stop adding trackers to your sites. Don’t add WCAG risk.

04.03.2026 17:14 πŸ‘ 26 πŸ” 14 πŸ’¬ 2 πŸ“Œ 0
Betontod - FlΓΌgel aus Stahl [ Lyric Video ]
Betontod - FlΓΌgel aus Stahl [ Lyric Video ] YouTube video by BETONTOD

Because this just came in my auto-playlist www.youtube.com/watch?v=P3yE...

04.03.2026 16:19 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Video thumbnail

What this demo was trying to show is that backdrop-filter opacity() doesn't do anything on its own in any browser. Easily testable in Firefox with the DevTools picker.

The fact that it has no effect on its own is *not* a bug/ due to lack of support. That's exactly what *should* happen.

04.03.2026 16:09 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Applying backdrop-filter on the div does nothing because one, there's no backdrop behind it and two, the div is opaque. The element/ pseudo that gets the backdrop-filter needs to have either no background (as it is the case here to avoid confusion about opacity() effect) or a semi-transparent one.

04.03.2026 15:51 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

The div is the backdrop. The pseudo is the rectangle on top, on which we set the backdrop-filter property. Which affects the backdrop area underneath the pseudo.

The stacking order doesn't matter as long as whichever is on top gets mix-blend-mode: difference.

04.03.2026 15:48 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Preview
backdrop-filter: opacity() does nothing (NOT a bug) ...

Test for `backdrop-filter: opacity()` codepen.io/thebabydino/...

If the 3rd rectangle is completely black, then the result of applying `backdrop-filter: opacity(.5)` is identical to no `backdrop-filter` at all since that last rectangle is the difference between them (`mix-blend-mode: difference`).

04.03.2026 15:02 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

opacity + drop-shadow = you see the shadow between the semi-transparent layer resulting from opacity and the fully opaque one behind.

(I was also really bummed to learn that's how backdrop-filter: opacity() works.)

04.03.2026 14:50 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

With backdrop-filter, the result of the filter is painted *on top* of the unfiltered opaque backdrop version (so opacity has no effect). The filter result also gets clipped to the element that has backdrop (so you cannot see a drop-shadow outside of it).

04.03.2026 14:48 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
KrΓΈterveg Te Helvete
KrΓΈterveg Te Helvete YouTube video by Kvelertak - Topic

If it's the last one ever...

www.youtube.com/watch?v=Phwa...

04.03.2026 13:56 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

opacity() and drop-shadow() don't actually do anything as backdrop-filter values. Not a bug.

04.03.2026 13:55 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

cc @wesbos.com - is there anyone else I should tag to get this fixed?

04.03.2026 06:43 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Scooped corners with jagged edges.

Scooped corners with jagged edges.

`border-radius` creates corner edges issues when that corner is masked.

`border-radius` creates corner edges issues when that corner is masked.

Zoom into the jagged scop edges.

Zoom into the jagged scop edges.

Zoom to better show the hairline corner issue.

Zoom to better show the hairline corner issue.

So I saw someone link to madcss.com and the first thing I noticed was the jagged scoop edges - see frontendmasters.com/blog/obsessi...

And the hairline corner issue (solved by simply removing the `border-radius` declarations that aren't needed anyway). And the choppy nav animation.

04.03.2026 06:20 πŸ‘ 5 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Sumatran tiger.

Sumatran tiger.

Amur leopard.

Amur leopard.

Snow leopard.

Snow leopard.

Iberian lynx.

Iberian lynx.

Today is World Wildlife Day.

So here are four wild cats I'd like to hope we won't see extinct during our lifetimes.

#cat #WorldWildlifeDay

03.03.2026 19:11 πŸ‘ 13 πŸ” 4 πŸ’¬ 0 πŸ“Œ 0

I think right now I'm witnessing the "other cats will all commence congregating on the fence" part of that song...

... one, two, three, four... πŸˆπŸˆβ€β¬›πŸˆπŸˆβ€β¬›

03.03.2026 14:46 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

So they should melt then?

03.03.2026 08:38 πŸ‘ 4 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Thanks all!

Filed a bug:
πŸͺ² bugs.webkit.org/show_bug.cgi...

Then also filed a Chrome bug:
πŸͺ² issues.chromium.org/issues/48928...

And a Firefox bug:
πŸͺ² bugzilla.mozilla.org/show_bug.cgi...

Because, you know...

(I want to throw my laptop out the window and myself with it about 80 times a day)

#CSS

03.03.2026 08:32 πŸ‘ 7 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

The selection is generally always too tall and there's no way to control that.

This is why "pushing down" never occurred to me, but rather "eating into".

02.03.2026 21:16 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Why use div and not output for the tooltips?

02.03.2026 20:22 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Epiphany screenshot. The selection background on the second line of text doesn't stretch across the full height of the letters.

Epiphany screenshot. The selection background on the second line of text doesn't stretch across the full height of the letters.

Firefox screenshot. The selection background on the second line of text doesn't look clipped like in Epiphany.

Firefox screenshot. The selection background on the second line of text doesn't look clipped like in Epiphany.

Hi, Bluesky πŸ¦‹ - could you help me out?

If you can test in actual Safari, what do you see when selecting *the second line* of text?

codepen.io/thebabydino/...

Does the selection background cover the letters fully (as expected/ as in Chrome/ Firefox) or only partially (as in Epiphany)? Thx!

#CSS

02.03.2026 20:11 πŸ‘ 0 πŸ” 0 πŸ’¬ 4 πŸ“Œ 1

Exactly 6 years after my "Unfortunately, `clip-path: path()` is Still a No-Go" post got published css-tricks.com/unfortunatel...

#CSS

02.03.2026 16:27 πŸ‘ 13 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0