Status

This page documents the implementation status of various HTML and CSS features in Blitz.

CSS PropertiesHTML ElementsEvents

CSS Properties are grouped into logical feature grouping, and within each group they are roughly ordered by the percentage of web pages that use that property. You can generally assume that if the longhand versions of a property are supported then the shorthand version will also be supported and vice-versa.

Core

% usePropertyStatus
93%display
display:inline✅ Supported
display:block✅ Supported
display:inline-block✅ Supported
display:flex✅ Supported
display:grid✅ Supported

Subgrid is not supported

display:table⚠️ Partial support

Table layout is emulated with CSS Grid.

display:masonry❌ Not supported
display:none✅ Supported
display:contents✅ Supported
92%position
position:static❌ Not supported
position:relative✅ Supported
position:absolute✅ Supported
position:fixed❌ Not supported
position:sticky❌ Not supported

Note that because 'position:static' is not supported, 'position:absolute' nodes are always positioned relative to their immediate parent

87%overflow
overflow:visible✅ Supported
overflow:clip✅ Supported
overflow:hidden✅ Supported
overflow:scroll✅ Supported
overflow:auto❌ Not supported
86%box-sizing✅ Supported
85%z-index✅ Supported
85%cursor
keyword✅ Supported
custom image❌ Not supported
82%content (::before / ::after)
string✅ Supported
image❌ Not supported
gradient❌ Not supported
counter❌ Not supported
76%float✅ Supported
62%clear✅ Supported
40%order✅ Supported
31%zoom❌ Not supported

Visibility, Clipping & Isolation

% usePropertyStatus
87%opacity✅ Supported

Nodes with opacity are currently clipped regardless of the overflow style

76%visibility✅ Supported
54%clip-path🚧 In Progress blitz#211
25%mask❌ Not supported
23%contain❌ Not supported
15%isolation❌ Not supported
5%content-visibility❌ Not supported

Sizing & Positioning

Flow relative versions of properties (e.g. max-inline-size) are also supported

% usePropertyStatus
93%width / height✅ Supported
80%min-width / min-height✅ Supported
83%max-width / max-height✅ Supported
90%inset✅ Supported
59%gap✅ Supported
30%aspect-ratio✅ Supported
49%object-fit✅ Supported
17%object-position✅ Supported

Padding, Margin & Borders

Flow relative versions of properties (e.g. padding-inline-start) are also supported

% usePropertyStatus
92%padding✅ Supported
91%margin✅ Supported
86%border-radius✅ Supported
77%border-color✅ Supported
68%border-width✅ Supported
62%border-style❌ Not supported
5%border-image❌ Not supported

Text Direction

% usePropertyStatus
47%direction❌ Not supported
15%unicode-bidi❌ Not supported
16%all✅ Supported
7%writing-mode❌ Not supported

Font

% usePropertyStatus
72%@font-face✅ Supported

It is not yet possible to override the family name or other matching criteria.

90%font-size✅ Supported
88%font-family✅ Supported
88%font-weight✅ Supported
80%font-style✅ Supported
47%font-display❌ Not supported
27%font-variant❌ Not supported
22%font-feature-settings❌ Not supported blitz#184
24%font-stretch✅ Supported
21%font-variation-settings✅ Supported
8%font-variant-ligatures❌ Not supported

Text

% usePropertyStatus
90%color✅ Supported
88%text-align✅ Supported
86%line-height✅ Supported
84%text-decoration✅ Supported
82%vertical-align❌ Not supported parley#291
82%white-space-collapse⚠️ Partial support
82%text-wrap-mode✅ Supported
73%text-transform❌ Not supported
66%text-overflow❌ Not supported parley#304
67%letter-spacing✅ Supported
57%word-break✅ Supported
42%overflow-wrap / word-wrap✅ Supported
43%webkit-line-clamp❌ Not supported
36%text-indent❌ Not supported
22%text-decoration-line❌ Not supported
22%text-wrap-style❌ Not supported
14%word-spacing✅ Supported
17%text-decoration-color✅ Supported
12%hyphens❌ Not supported
11%tab-size❌ Not supported
8%quotes❌ Not supported
9%webkit-text-fill-color❌ Not supported
14%text-underline-offset❌ Not supported
13%text-decoration-thickness❌ Not supported

Backgrounds

% usePropertyStatus
90%background-color✅ Supported
78%background-image✅ Supported
75%background-position✅ Supported
72%background-size✅ Supported
72%background-repeat✅ Supported
45%background-clip✅ Supported
8%background-attachment❌ Not supported
7%background-origin✅ Supported

Flexbox

% usePropertyStatus
74%flex-direction✅ Supported
68%flex-wrap✅ Supported
60%flex-grow✅ Supported
59%flex-shrink✅ Supported
43%flex-basis✅ Supported
0%webkit-box-*❌ Not supported

These properties are for the legacy flexbox model that was never widely adopted. Blitz does not ever intend to support these.

Grid

% usePropertyStatus
43%grid-template-{rows,columns}
px / percentage / fr✅ Supported
min-content / max-content / auto✅ Supported
fit-content()✅ Supported
named lines✅ Supported
subgrid❌ Not supported taffy#468
26%grid-{row,column}✅ Supported
21%grid-area✅ Supported
15%grid-template-areas✅ Supported
12%grid-auto-flow✅ Supported
8%grid-auto-{rows,columns}✅ Supported

Box Alignment

% usePropertyStatus
78%{align,justify}-content✅ Supported
79%{align,justify}-items✅ Supported
54%{align,justify}-self✅ Supported

Transforms

% usePropertyStatus
84%2D Transforms⚠️ Partial support

2D transforms are currently applied visually, but hit detection doesn't yet work properly for transformed nodes

19%3D Transforms❌ Not supported

Transitions & Animations

% usePropertyStatus
80%Transitions✅ Supported
69%Animations✅ Supported

Composition & Effects

% usePropertyStatus
82%box-shadow✅ Supported
48%outline✅ Supported
51%filter❌ Not supported
42%text-shadow❌ Not supported
26%backdrop-filter❌ Not supported
9%mix-blend-mode❌ Not supported
4%background-blend-mode❌ Not supported

Lists

% usePropertyStatus
49%list-style-type✅ Supported
10%list-style-position✅ Supported
10%counter-increment✅ Supported
9%counter-reset✅ Supported

Tables

% usePropertyStatus
49%border-collapse⚠️ Partial support

It is currently assumed that borders in tables with collapsed borders are uniform (have the same width/style/color). The border styles from the first cell are used.

31%border-spacing✅ Supported
19%table-layout✅ Supported
6%caption-side❌ Not supported

SVG

Rendering SVGs (including inline SVGs) is supported, but styling SVGs is not yet supported.

% usePropertyStatus
64%fill❌ Not supported
43%stroke❌ Not supported
45%stroke-width❌ Not supported
31%stroke-dashoffset❌ Not supported
30%stroke-dasharray❌ Not supported
12%fill-opacity❌ Not supported
14%stroke-linecap❌ Not supported
8%stroke-miterlimit❌ Not supported
7%stroke-opacity❌ Not supported

Interaction & Pointer events

% usePropertyStatus
69%pointer-events❌ Not supported
68%user-select❌ Not supported
0%webkit-user-select❌ Not supported
0%webkit-tap-highlight-color❌ Not supported
41%touch-action❌ Not supported
17%caret-color❌ Not supported
7%webkit-user-drag❌ Not supported

User Agent Hints

% usePropertyStatus
63%webkit-font-smoothing❌ Not supported
46%appearance❌ Not supported
39%will-change❌ Not supported
36%text-rendering❌ Not supported
22%text-size-adjust❌ Not supported
22%forced-color-adjust❌ Not supported
18%color-scheme❌ Not supported
18%scrollbar-color❌ Not supported
6%image-rendering❌ Not supported
6%overflow-anchor❌ Not supported

Miscellaneous / Other

% usePropertyStatus
36%resize❌ Not supported
38%scrollbar-width❌ Not supported
11%speak❌ Not supported
10%container❌ Not supported

Scroll Behaviour

% usePropertyStatus
0%scroll-boundary-behavior❌ Not supported
19%scroll-behavior❌ Not supported
15%scroll-snap-type❌ Not supported
9%scroll-snap-align❌ Not supported
7%scroll-padding❌ Not supported
0%scroll-boundary-behavior-y❌ Not supported

Multi-column Layout

% usePropertyStatus
5%column-count❌ Not supported

@page

% usePropertyStatus
7%size❌ Not supported
5%page-break-inside❌ Not supported