-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Broken graphics on Blink browsers #513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Maybe related to #434 * {
border-image-repeat: stretch !important;
// for chrome
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
border-image-repeat: stretch !important;
}
// for firefox
@supports (-moz-appearance: meterbar) {
border-image-repeat: stretch !important;
}
}
doesn't seem helping |
Anyone have any luck fixing this? For the most part it looks better in Firefox, but it's very 'gappy' in Edge. Not just the icons, but a lot of things. |
When zooming in the browser, the floating-point offset value of the box-shadow fails to precisely align with the physical pixel grid after zooming, resulting in gaps in the rendering. It is caused jointly by sub-pixel positioning, pixel rounding error and the unsuitability of box-shadow itself for fine stitching rendering.
based on this, I wrote a set of vue3 component libraries using css houdini paintWorklet, which solved this problem you can find it here: https://github.com/maomentai817/pixel-ui |
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
It seems that icons and some other elements somehow broken in brave.
There are spacing between "pixels" in the icons.
To Reproduce
Expected behavior
Icon without white spacing between "pixels"
Screenshots
Brave (incorrect)

Chrome Canary (incorrect)

Firefox (correct)

Environment:
Suggestion(s) for fixing this issue
Additional context
The text was updated successfully, but these errors were encountered: