Browser support matrix
The HTML and CSS that Site Designer exports targets modern browsers. This article defines the support matrix and explains how framework choice affects compatibility.
Supported browsers (output)
Sites built with Site Designer are designed and tested to work in:
| Browser | Minimum version | Notes |
|---|---|---|
| Chrome | 90+ | Primary test target |
| Firefox | 88+ | Full support |
| Edge (Chromium) | 90+ | Full support |
| Safari (macOS) | 14+ | Test on macOS; minor rendering differences in older versions |
| iOS Safari | 14+ | Primary mobile target |
| Android Chrome | 90+ | Full support |
| Samsung Internet | 14+ | Based on Chromium; behaves like Chrome |
These versions were current in 2021 and later. As of 2026, the vast majority of users worldwide are on browser versions well above these minimums.
Internet Explorer 11
IE11 reached end of life in June 2022 and is no longer supported by Microsoft. Site Designer’s output does not guarantee IE11 compatibility:
- CSS Grid is partially supported in IE11 with the old
-ms-gridsyntax, which Site Designer does not generate. - CSS custom properties (variables) are not supported at all in IE11.
- Flexbox works in IE11 with bugs (especially in flex item sizing).
If you must support IE11, the Bootstrap 4 framework provides the most IE11-compatible output among the three, since it avoids CSS variables and uses well-tested Flexbox patterns. You’ll still need to manually test and add -ms- prefixes for any Grid layouts.
How framework choice affects browser support
| Feature | Foundation 6 | Bootstrap 4 | Materialize | No framework |
|---|---|---|---|---|
| CSS Grid layouts | Limited IE11 support | Not used by default | Not used | Limited IE11 support |
| Flexbox | IE11 with bugs | IE11 with bugs | Float-based (IE11 ok) | Depends on usage |
| CSS variables | IE11 incompatible | IE11 incompatible | IE11 incompatible | IE11 incompatible |
| Modern Chrome/Firefox/Safari | Full | Full | Full | Full |
Materialize uses a float-based grid (not Flexbox or CSS Grid), which gives it slightly better IE11 layout compatibility than Foundation or Bootstrap 4, at the cost of less powerful layout tools.
Feature queries for IE11 fallbacks
If you need to ship an IE11 fallback for a specific layout, use @supports to provide a simpler layout to browsers without Grid support:
/* Fallback for IE11 and other browsers without Grid */
.container { display: flex; flex-wrap: wrap; }
/* Modern browsers with CSS Grid support */
@supports (display: grid) {
.container { display: grid; grid-template-columns: repeat(3, 1fr); }
}
Add @supports blocks in Site Designer via the CSS pane.
Cross-browser testing tools
| Tool | Best for |
|---|---|
| Your local browsers | Primary testing — always start here |
| BrowserStack | Real device + browser cloud; free tier available |
| Sauce Labs | CI-integrated browser testing |
| CanIUse.com | Checking support for specific CSS/JS features before using them |
| Browser DevTools | Responsive design mode simulates various viewport sizes |