
Mein Lieblingsschild (/s)
Anhalten, Absteigen, Aufsteigen so ein lästiger Ritus ...

Anhalten, Absteigen, Aufsteigen so ein lästiger Ritus ...
EDIT: I picked a stupid title. I think this is a render bug in both Safari and FireFox.
Per MDN (I couldn't locate it in the CSS spec), style queries on custom properties will yield true, if their value differs from the `@property` initial-value definition. This _will_ happen in Chromeiums, but won't in Firefox and Safari.
I created a fiddle - it should look identical in FF and Chrome/Edge, but it doesn't:
https://jsfiddle.net/vgn7xy8o/1/
As explained here CSS Container Style queries : r/css
There might be a bug in container style queries.
In CSS we can now do `@container style()` queries, with MDN stating that:
> A style feature without a value evaluates to true if the computed value is different from the initial value for the given property.
(https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@container#container\_style\_queries)
Now I have a registered property with initial value, but it seems the style query will evaluate to true, independend of the value of the property. Safari seems to do the same thing.
Is this a false statement in MDN or is there a render Bug in FF and Safari.
I used this as a minimal sample:
```
<!DOCTYPE html>
<html>
<head>
<title>Minimal sample</title>
<style>
@property --im-a-color {
syntax: "<color>";
inherits: false;
initial-value: red;
}
.red {
--im-a-color: red;
}
@container style(--im-a-color) {
h1 {
color: green;
}
}
</style>
</head>
<body>
<div>
<h1>I should be red</h1>
</div>
<div class="red">
<h1>I should also be red</h1>
</div>
</body>
</html>
Irgendwas war komisch bei der Fahrt heute - der Reifen schleift ein wenig am Schutzblech (das macht er sonst nur beim starken Beschleunigen fast nicht hörbar). Wird wohl das Wetter sein, dachte ich.
Dann plötzlich tritt ins Leere - die Kette ist vorne runtergesprungen. Wird wohl die Hitze sein, dachte ich.
Wieder eingefädelt (Ebike mit Kettenschutz, yay) und irgendwie konnte ich das Pedal nicht vorwärts treten.
Die Bremse presst gegen die Scheibe .......... und was macht die Achse da????
​
Ich kann tatsächlich nicht sagen, ob das bei Kette einfädeln passiert ist oder beim Abspringen - auf jeden Fall Glück im Unglück...
​
Passt auf euch auf.
Ist dieses Prachtexemplar von Hanf männlich oder weiblich?
Männchen dürften bleiben - Weibchen eher nicht ...
Aufgrund eines gewonnenen Gerichtsverfahrens stehen und von einem Schuldner 5.000€ zu - der Schuldner (GmbH) ist in Insolvenz und das Verfahren ist masselos eingestellt worden.
Können wir den entstandenen Schaden eventuell als besondere Belastung in unserer Steuererklärung ansetzen?
My VS 2026 is opening multiple browser tabs, when running _some_ Blazor applications.
There only one launchProfile, and one of the tabs will always be about:empty, but has anyone noticed this as well?