mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

348K
active users

Want inline semitransparent text background with no overlap?

Here's how on @codepen
codepen.io/thebabydino/pen/gbO
(you can see the overlap problem and the desired result below)

The `filter` combines 2 `feColorMatrix` techniques:

1️⃣ using a channel as an alpha mask

2️⃣ solid fill

#CSS#SVG#filter

1⃣ using a channel as an alpha mask - the bottom row lets us choose which input channel is used for the output alpha; if we set one of the RGB channels (first 3 values) to 1 and zero all else on the last row, that channel is used as the alpha mask.

Here is the interactive demo illustrating this on @codepen
codepen.io/thebabydino/full/OJ

#CSS#SVG#filter
Ana Tudor 🐯

2️⃣ solid fill - first three values on the last column are set to the desired RGB values (decimal representation of percentage RGB)

Interactive demo on @codepen
codepen.io/thebabydino/full/LY

mastodon.social/@anatudor/1121

#SVG#filter#css