Well-deployed technologies

Features in CSS 3 and beyond define simple yet powerful features to create graphical effects, such as rounded corners, shadow effects, and rotated content.

Animations can be described declaratively via CSS Animations and CSS Transitions.

Scripted animations can be resource intensive, especially on constrained devices. The possibility offered by the Animation Frames to manage the rate of updates to animations can help to keep them under control.

By default, the box model in CSS specifies that any padding and border of an element are to be laid out and drawn outside of the specified width and height for the element. The effective external size of a box thus varies with the padding and border used, which complicates the design of responsive layouts where developers want to vary box sizes based on the size of the screen. The border-box value of the box-sizing property tells the user agent to lay out and draw padding and border inside the specified width and height for the element, which usually simplifies the design of responsive layouts.

CSS Flexbox and CSS Grid introduce two new layout modes, designed for laying out more complex applications. Notably, they make it possible to preserve a clear separation between the content itself (HTML, SVG) and its layout by allowing re-ordering of elements on screen, without having to change the underlying HTML. This is particularly relevant on mobile devices where the user interface and user experience need to be adjusted to fit the screen and available interaction mechanisms (see also Device Adaptation).

Flexbox focuses on space distribution within an axis, and uses a simpler bottom-up approach to layout, while Grid enforces 2-dimensional alignment, and uses a top-down approach to layout. It is expected that both will be valuable and complementary tools for web developers.

Fonts play also an important role in building appealing graphical interfaces, but mobile devices are in general distributed with only a limited set of fonts. WOFF (Web Open Font Format) addresses that limitation by making it easy to use fonts that are automatically downloaded through style sheets, while keeping the size of the downloaded fonts limited to what is actually needed to render the interface. WOFF is particularly friendly to mobile devices, thanks to a font data preprocessing and optimization step that reduces redundancy of font data structures, and a dedicated entropy coding scheme for compression that does not require excessive CPU or memory usage for decoding, even on lower-end mobile devices.

SVG, Scalable Vector Graphics, provides an XML-based markup language to describe two-dimensions vector graphics. Since these graphics are described as a set of geometric shapes, they can be zoomed at the user request, which makes them well-suited to create graphics on mobile devices where screen space is limited. They can also be easily animated, enabling the creation of very advanced and slick user interfaces.

The integration of SVG in HTML5 opens up new possibilities, for instance applying advanced graphic filters (through SVG filters) to multimedia content, including videos. SVG 2 is set to facilitate that integration and complete the set of features in SVG.

In complement to the declarative approach provided by SVG, the <canvas> element added in HTML5 enables a 2D programmatic API that is well-suited for processing graphics in a less memory intensive way.

Another important aspect in graphics-intensive applications (e.g. games) is the possibility to use the entire screen to display the said graphics; the work on a Fullscreen API to request and detect full screen display, now done in the WHATWG.

NB: a 3D graphic API for HTML5 canvas, called WebGL, has been developed outside of W3C, as part of the Khronos Group; this API has been built to be compatible with OpenGL ES, i.e. for embedded systems, and is intended to work on mobile devices. The GPU for the Web Community Group also started to design a new Web API to expose modern 3D graphics and computation capabilities in a performant, powerful and safe manner, with a goal to be agnostic of and compatible with existing native system platforms (such as Direct3D, Metal, or Vulkan).

FeatureSpecification / GroupMaturityCurrent implementations
Select browsers…
Borders and background EffectsRounded corners in CSS Backgrounds and Borders Module Level 3
CSS Working Group
Candidate Recommendation
Box shadow effects in CSS Backgrounds and Borders Module Level 3
CSS Working Group
Candidate Recommendation
Transformation Effects2D effects in CSS Transforms Module Level 1
CSS Working Group
Working Draft
AnimationsCSS Animations Level 1
CSS Working Group
Working Draft
CSS Transitions
CSS Working Group
Working Draft
requestAnimationFrame in HTML 5.2
Web Platform Working Group
Recommendation
Complex layoutsbox-sizing property in CSS Basic User Interface Module Level 3 (CSS3 UI)
CSS Working Group
Recommendation
CSS Flexible Box Layout Module Level 1
CSS Working Group
Candidate Recommendation
CSS Grid Layout Module Level 1
CSS Working Group
Candidate Recommendation
Downloadable fontsWOFF File Format 2.0
Web Fonts Working Group
Recommendation
2D Vector GraphicsScalable Vector Graphics (SVG) 1.1 (Second Edition)
SVG Working Group
Recommendation
Scalable Vector Graphics (SVG) 2
SVG Working Group
Candidate Recommendation
2D Programmatic APIHTML Canvas 2D Context
HTML Media Extensions Working Group
Recommendation

Technologies in progress

Animations can also be managed via scripting through the API exposed in Web Animations.

Given the time required for downloading fonts over mobile networks, authors need to adapt their content to the progressive availability of fonts. CSS Font Loading gives the necessary events and interfaces to developers to enable that adaptation. The font-display descriptor for @font-face and @font-feature-values rules can also be used to control how a downloadable font renders before it is fully loaded.

Font variations along different axes (width, weight, optical size) can be encoded in a single font file. The font variation properties in CSS allow finer control over usage of font variants and can further help developers avoid unnecessary network requests to fetch additional variants of a font.

FeatureSpecification / GroupMaturityCurrent implementations
Select browsers…
AnimationsWeb Animations
CSS Working Group
SVG Working Group
Working Draft
Downloadable fontsCSS Font Loading Module Level 3
CSS Working Group
Working Draft
font-display in CSS Fonts Module Level 4
CSS Working Group
Working Draft
Variable fonts in CSS Fonts Module Level 4
CSS Working Group
Working Draft