Developing and testing features or extensions for Microsoft Edge
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi everyone,
I have a small business website and recently I noticed that it’s loading slower on Microsoft Edge compared to other browsers. Sometimes images take time to load and overall performance feels a bit laggy.
I’m not very technical, so I’m looking for simple and practical suggestions that can help improve the speed and user experience on Edge.
What are the common reasons for this issue, and how can I fix it without making major changes?
Any help would be appreciated.
Developing and testing features or extensions for Microsoft Edge
Hi @Mark Phillips ,
If the site is slower in Microsoft Edge than in other browsers, the causes are usually not Edge itself but things like large images, too many scripts, browser extensions, or cached files behaving differently in one browser.
Some simple things you can check first:
On the website side, the biggest low-effort improvements are usually:
If you want a simple way to confirm the issue, open the site in Edge and run it through Microsoft Edge DevTools. Those tools can quickly show whether the slowdown is from images, scripts, server response time, or caching.
Also, it may be worth asking a web developer or performance specialist to review the site. A professional can identify the exact bottleneck much faster and suggest the safest fix without requiring major trial and error.
Hope this helps! If my answer was helpful, I would greatly appreciate it if you could follow the instructions here so others with the same problem can benefit as well.
I’ve faced a similar issue before, and in most cases it’s related to basic optimization problems rather than the browser itself.
A few things that usually help:
In my case, improving these things made the website load much smoother on Microsoft Edge as well as other browsers.
If you want to see a real example, you can check this example website to understand how things are structured and optimized.
Hope this helps!
Common causes of slow loading in Microsoft Edge include heavy page content (large images, JavaScript), layout shifts during load, and main-thread work that blocks rendering. Edge provides built-in tools to measure and improve performance without deep technical knowledge.
A simple, practical approach:
aspect-ratio for key images so Edge can reserve both horizontal and vertical space and avoid layout shifts. .hero-image img {
width: 100%;
aspect-ratio: 2.5;
object-fit: cover;
}
If direct code changes are not comfortable, share the Lighthouse report (especially the Opportunities and Diagnostics sections) with a web developer and ask them to implement the highest-impact suggestions.
References: