Skip to main

Design System

  • Welcome
  • Colors
  • Typography
  • Spacing

CSS

  • Utilities
  • Compositions

Component Library

  • Aside
  • Audio Player
  • Authors
  • Banners
  • Block quotes
  • Brand
  • Breadcrumbs
  • Browser compatibility table
  • Button
  • Callout
  • Cards
  • Carousel
  • Code blocks
  • Compare
  • Counter
  • Details
  • Ellipsis
  • Eyebrow
  • Floating Action Button
  • Feature Card
  • Figure
  • Fixed width Image
  • Form Fields
  • Headline
  • Hero
  • Hero Image
  • Icon Button
  • Indicator
  • Labels
  • Lists
  • Numbered headers
  • Page Header
  • Pagination
  • Pill
  • Preview Pagination
  • Prose
  • Spinner
  • Stack Nav
  • Stats
  • Status List
  • Tables
  • Tabs
  • Generated table of contents
  • Toggle Switch
  • Tooltips

Browser compatibility table - Component

A decorated list of browsers and their in-context support with data source link.

View full screen
Code

Source (Nunjucks)

<figure class="browser-compat cluster">
<figcaption class="browser-compat__label">{{ data.label }}</figcaption>
<ul class="browser-compat__items cluster" role="list">
{% for item in data.items %}
<li class="tooltip">
<span class="tooltip__content">{{ item.label }}</span>
<div class="browser-compat__item" aria-hidden="true">
<img src="/images/icons/{{ item.image }}" alt="{{ item.name }}" />
<span class="indicator {{ item.indicator.utilities }}">{{ item.indicator.content }}</span>
</div>
</li>
{% endfor %}
</ul>
<p>
<a href="{{ data.link.url }}" target="_blank">{{ data.link.text }}</a>
</p>
</figure>

Output

<figure class="browser-compat cluster">
<figcaption class="browser-compat__label">Browser support:</figcaption>
<ul class="browser-compat__items cluster" role="list">
<li class="tooltip">
<span class="tooltip__content">Chrome 74, Supported</span>
<div class="browser-compat__item" aria-hidden="true">
<img src="/images/icons/chrome.svg" alt="Chrome 74" />
<span class="indicator bg-state-good-bg color-state-good-text">74</span>
</div>
</li>
<li class="tooltip">
<span class="tooltip__content">Firefox, Not supported</span>
<div class="browser-compat__item" aria-hidden="true">
<img src="/images/icons/firefox.svg" alt="Firefox" />
<span class="indicator bg-state-bad-bg color-state-bad-text">×</span>
</div>
</li>
<li class="tooltip">
<span class="tooltip__content">Edge 79, Supported</span>
<div class="browser-compat__item" aria-hidden="true">
<img src="/images/icons/edge.svg" alt="Edge 79" />
<span class="indicator bg-state-good-bg color-state-good-text">79</span>
</div>
</li>
<li class="tooltip">
<span class="tooltip__content">Safari, Not supported</span>
<div class="browser-compat__item" aria-hidden="true">
<img src="/images/icons/safari.svg" alt="Safari" />
<span class="indicator bg-state-bad-bg color-state-bad-text">✕</span>
</div>
</li>
</ul>
<p>
<a
href="https://developer.mozilla.org/docs/Web/API/BackgroundFetchEvent#browser_compatibility"
target="_blank"
>
Source</a
>

</p>
</figure>

We want to help you build beautiful, accessible, fast, and secure websites that work cross-browser, and for all of your users. This site is our home for content to help you on that journey, written by members of the Chrome team, and external experts.

Contribute

  • File a bug
  • View source

Related content

  • developer.chrome.com
  • Chrome updates
  • Case studies
  • Podcasts
  • Shows

Connect

  • Twitter
  • YouTube
  • Google Developers
  • Chrome
  • Firebase
  • Google Cloud Platform
  • All products
  • Terms & Privacy
  • Community Guidelines

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies.