Troubleshooting website display or functionality issues in Edge on Windows 11
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am troubleshooting a rendering inconsistency in Microsoft Edge (Version 122.0.2365.92) specifically regarding how the browser handles semi-transparent CSS overlays on top of fixed background images.
On standard monitors, the layout looks perfect. However, on high-DPI displays (like the Surface Laptop Studio), we are seeing a strange 1px "shimmer" or clipping line between the hero container and the next section. I am trying to achieve a seamless "Adult-Self Leadership" style landing page layout where the CTA button remains centered regardless of the viewport.
Reference for the layout style I'm aiming for: I’m using the hero section on this site as my benchmark for the centering logic: https://the-weddingatelier.com/ > My Environment:
OS: Windows 11 Pro (23H2)
Browser: Microsoft Edge (Chromium-based)
Display Scale: 150% (Recommended)
What I’ve tried:
Adding backface-visibility: hidden; to the container.
Using transform: translateZ(0); to force hardware acceleration.
Changing the background-attachment from fixed to scroll.
Has anyone else noticed Edge-specific rendering bugs with background-blend-mode or overlays when Windows Display Scaling is active? Is there a specific vendor-prefix or Chromium flag I should be looking into to stabilize the sub-pixel rendering?
Any advice from the dev community here would be appreciated!
Troubleshooting website display or functionality issues in Edge on Windows 11
Edge on high‑DPI Windows displays can expose subtle sub‑pixel layout and rendering issues, especially where fixed backgrounds, overlays, and blended content meet section boundaries.
From the available information, the most relevant guidance is to treat this as a rendering performance/layout problem and focus on reducing layout and paint complexity rather than using vendor prefixes or flags.
Actionable steps based on the documented guidance:
Recalculate Style events (purple) that might indicate complex style interactions at the section boundary.Layout events with red bars indicating forced synchronous layouts.
If the shimmer coincides with heavy style/layout work, simplify the CSS around that boundary.background-attachment: fixed with transforms on ancestor elements near the seam, as this can increase layout/paint complexity.background-blend-mode, test whether moving the blend to a pseudo‑element or separate overlay layer reduces the visible seam.transform and opacity over properties that change geometry (width, height, top, left, margin, etc.), since those trigger layout and more expensive paint.There is no documented vendor‑specific CSS prefix or Chromium flag in the provided material that targets background-blend-mode or overlay stability under Windows display scaling. The recommended approach is to simplify layout and paint around the seam, avoid layout‑triggering properties and complex selectors, batch DOM reads/writes, and treat any remaining artifact as a candidate product bug to be reported with full DPI/scaling details.
References: