Tobias Buschor
Tobias Buschor
Here you overwrite svg styles that can be relevant. https://github.com/AustinGil/bedrocss/blob/e4ee7c65a014d67878e6e45675bbe8c192a89d5a/src/media.css#L10-L12 Note that css is stronger than the svg attributes. Even `:where(svg)` is stronger. ```html ... ``` Possible, but maybe a...
These Chrome-bugs are fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=375693 https://bugs.chromium.org/p/chromium/issues/detail?id=700029 And this Edge-Legacy link no more works: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4511145/
The corresponding spec change: https://github.com/whatwg/html/commit/22154a4c1d426dddf187fb12c05fbcb8816c94a5
I would really like it that when a checkbox is unchecked its value is an empty string. I don't know about others, but i have to do this hack all...
There are 3 readyStates in this order: 1. loading | | -> DOMContentLoaded fires 2. interactive | | < - script executes, `!complete ? addEventListener(...) : OneTimeInit()` // addEventListener wins...
An element can have the `contenteditable` value "true" but also "" (emty string) or to be editable. See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable But anyway, an easier way to see if it's a contenteditable-root...
The ternary operator is available since php 5.3
There are already many design systems. To avoid naming collisions, there is a project: https://github.com/nuxodin/web-namespace-registry Maybe you want to register the namespace "oj" here with a pull request?
Add the possibility to paste a file or a screenshot. It is tested with firefox and chrome. I dont know if other browsers work, but they will not fail.
With "writeOnly" and "readOnly" we have two keywords that are mutually exclusive. Also you can't define a value as writeable AND readable. Would "readable" and "writeable" which are assumed to...