While inquiries asking "Do we still need to support IE for this CSS?" have faded by 2026, discussions around "Does Safari or Chrome support this?" or "Is it a breach of contract if this doesn't work on mobile?" have grown increasingly common.
The March 2026 Baseline monthly digest published by web.dev in April 2026 is the latest installment in the series updating official standards for determining when features can be safely used. Applying Baseline specifications properly significantly mitigates both compatibility risks in client estimates and alignment gaps with clients.
This article provides an overview of how Baseline works, demonstrates its application in corporate web development, and highlights key points for incorporating it into contracts.
What is Baseline? (2026 refresher)
Two Baseline stages
- Baseline: Newly available — Supported across the latest versions of all major browsers
- Baseline: Widely available — Judged sufficiently widespread after 30 months have passed since initial broad support
Widely available can be treated as the safe zone for corporate websites and B2B landing pages. For Newly available, a pragmatic guideline is adopting features within an experimental scope, anticipating broad adoption over the next 2 to 3 years.
Where to check status
- web.dev/baseline — Detailed feature support status and Baseline tracking
- caniuse.com — Integrated Baseline badges provide clear UI visibility
- Baseline indicators are now standard across individual feature pages on MDN
Key features promoted to "Widely available" as of March 2026 (excerpt)
| Features | Application in Client Projects |
|---|---|
CSS :has() | Parent element conditional branching, navigation state management |
| CSS Nesting | Improved style maintainability |
View Transitions API (same-document) | Refined in-page transitions |
subgrid | Complex corporate layouts |
fetchpriority | LCP improvements |
dialog element | Standardization of modals and consent dialogs |
This feature set has reached a maturity level suitable for full adoption across corporate website and landing page projects.
Four benefits of anchoring client estimates to Baseline
Benefit 1: Browser support scope can be defined as a constant
Tying contractual compatibility clauses directly to Baseline references—such as specifying "IE is unsupported; coverage includes the latest two releases of major browsers and features designated as Widely available"—eliminates the friction of debating requirements on every project.
Benefit 2: Lower barrier to proposing modern design patterns
When proposing dynamic visual expressions like View Transitions or Scroll-driven Animations, noting that "this is now Widely available" makes it significantly easier to align PMs, directors, and clients. Architectural decisions like using View Transitions for Corporate Websites can be approved cleanly from a contractual standpoint.
Benefit 3: Predictable polyfill costs
Features at the Newly available stage can be adopted under the principle of Progressive Enhancement. Determining whether to bundle a polyfill or fall back gracefully can be evaluated systematically based on Baseline status.
Benefit 4: Minimizing misalignment with clients
Addressing feedback like "This behaves differently in Safari" or "Firefox rendering looks off" can be resolved immediately with screenshots of Baseline compatibility data, reducing unnecessary review cycles.
Practical Baseline implementation patterns for corporate website development
Pattern A: Baseline Widely-only architecture (safest)
- CSS limited strictly to
Widely availablefeatures - New JavaScript APIs restricted strictly to
Widely available - Browser requirements: Latest 2–3 versions of major browsers
- Target projects: B2B corporate sites, listed enterprise IR sites
Pattern B: Baseline + Progressive Enhancement (recommended)
- Core functionality built on
Widely available Newly availableadded progressively as enhancements- View Transitions and advanced animations placed in this tier
- Target projects: Modern brand websites, startup landing pages, media publications
Pattern C: Cutting-edge adoption (experimental scope)
- Adopted technologies: fully utilize new features such as those covered in CSS Spring 2026 New Features
- Prioritize concept over Baseline compliance when adopting features
- Target projects: campaign sites, limited-time landing pages, and promotional sites
Choosing between these three patterns based on project characteristics is the fastest route to balancing quality and expressiveness.
Baseline-Based Configuration Template When Building with Astro
Browser Targets
// astro.config.mjs
export default defineConfig({
vite: {
build: {
target: 'baseline-widely-available', // or ['chrome120', 'safari17', 'firefox120']
},
},
});
Handling CSS
- Specify the Baseline stage using PostCSS
postcss-preset-env - Directly adopt
:has(),:is(), and CSS Nesting as plain CSS - Since
subgridhas been promoted to Widely available, it can also be used for primary layouts
Font and Image Optimization
- Standardize the adoption of
fetchpriority="high"for LCP elements - Keep AVIF / WebP branching simple with
<picture> - Automatically add
loading="lazy"to images outside the initial viewport
Incorporating this configuration into your platform team's Golden Path (see Four Steps of Platform Engineering) will ensure consistent quality across multiple projects.
Practical Examples of Incorporating Baseline into Contracts
Sample Drafting for Supported Browser Clauses
Article X (Supported Browsers) The deliverables shall be guaranteed to work on browsers that satisfy either of the following conditions:
- The latest two generations of Chrome, Safari, Edge, and Firefox
- Scope implemented with Web Platform Baseline: Widely available features. Decorative visual effects (animations, etc.) shall be provided as progressive enhancement using Baseline: Newly available features, and designed so that they do not hinder the operation of core functions even on unsupported browsers.
Drafting it this way clarifies the scope of responsibility for legacy browser support.
Scope Management for Additional Support
- Support for IE or Legacy Edge → Separate quote + separate schedule
- Industry-specific browsers (enterprise terminals, etc.) → Custom quote upon prior confirmation
- Adding non-Baseline features → Agreed upon as an experimental scope
Productizing "Baseline Audits" in Custom Development
Approaches to Productization
You can package a Baseline audit report as a product offering for existing sites.
| Item | Details |
|---|---|
| Inventory of used APIs | Enumerate all adopted CSS/JS features |
| Baseline status evaluation | Visualize Widely / Newly / Limited status for each feature |
| Risk assessment | Impact scope of Limited features and alternative options |
| Improvement roadmap | Modernization plan on a 3-month / 6-month horizon |
You can combine this with our Core Web Vitals Guide and SEO Beginner's Guide to pitch it as a site modernization package.
Client communication template (for executive leadership)
| Technical term | Executive-friendly phrasing |
|---|---|
| Web Platform Baseline | "Official list of features that can be safely used across major browsers" |
| Widely available | "Features that are sufficiently widespread to adopt with confidence" |
| Newly available | "Features that have only just become available across the latest browsers and warrant a wait-and-see approach" |
| Progressive Enhancement | "An approach to building that progressively enhances the experience starting from supported browsers" |
Saying, "We will align the supported browser scope with industry standards" speeds up client decision-making.
Conclusion — Baseline as a Way to Turn "Compatibility Debates" into a Constant
Web Platform Baseline is an official benchmark that makes compatibility uncertainties visible in client corporate site development. Here are three key points to master on the ground:
- Turn browser support contract clauses into constants by referencing Baseline
- Establish Widely + Progressive Enhancement as your standard configuration
- Propose modernization for existing sites centered on Baseline audits
At GleamHub, from Astro-based corporate site development and Baseline Widely–compliant modern site design to Baseline audits of existing sites, renewal proposals, and implementation support for safely adopting modern expressions including View Transitions, we deliver client web development that turns compatibility debates into a constant. Whether your project is stalled due to misalignments over browser support or you are considering site modernization and wondering where to begin, please feel free to reach out for a one- to two-week Baseline audit. We will propose a corporate site design that balances visual expression with compatibility and will stand strong for the next five years.









