Skip to content
Putting technology to work.
Insights to guide decisions and action.

Search articles

Designing corporate websites with Web Platform Baseline 2026: Establishing standards without compatibility headaches

Table of contents · 8 items

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)

FeaturesApplication in Client Projects
CSS :has()Parent element conditional branching, navigation state management
CSS NestingImproved style maintainability
View Transitions API (same-document)Refined in-page transitions
subgridComplex corporate layouts
fetchpriorityLCP improvements
dialog elementStandardization 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 available features
  • 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 available added 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 subgrid has 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:

  1. The latest two generations of Chrome, Safari, Edge, and Firefox
  2. 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.

ItemDetails
Inventory of used APIsEnumerate all adopted CSS/JS features
Baseline status evaluationVisualize Widely / Newly / Limited status for each feature
Risk assessmentImpact scope of Limited features and alternative options
Improvement roadmapModernization 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 termExecutive-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:

  1. Turn browser support contract clauses into constants by referencing Baseline
  2. Establish Widely + Progressive Enhancement as your standard configuration
  3. 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.

Share this articleXFacebook
Kakeru Suzuki

Fascinated by the possibilities of technology, has had a deep interest in programming and digital art since student days

Turn this article's theme into your company's next step

Starting from what you want to achieve with your website.

We organize user goals, required features, and ongoing maintenance structures to determine the first steps in development and improvement.

  • Website objectives
  • Features and usability
  • Post-launch operations
Consult on web development and improvements

You can consult with us from the initial conceptual stage. Details from this article will be carried over to the inquiry form.

Receive the latest articles via email · Read the web production guide
Free download

Complete Guide to Web Production: Costs, Vendor Selection & Traffic Acquisition [2026 Edition]

We have compiled cost benchmarks, vendor selection criteria, and traffic acquisition strategies into a PDF.

The PDF and newsletter emails are currently in Japanese.

You will also be subscribed to our newsletter. You can unsubscribe at any time.