Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Accessibility Page Zoom


Why

People with low vision need to zoom the content in order to use the page.


What

The big brother of text zoom is page zoom. Zoom everything! The principles are easy to understand:

  • Avoid horizontal scrolling.
  • All content is available.
  • All functionality is available.
  • Avoid text in images.
  • Provide space for key content.

Available means that nothing is clipped, truncated or obscured.

Page zoom often triggers mobile view on responsive sites, which is good.


How

You will now learn five techniques to support page zoom.


Provide enough space for key content

Do not let secondary content occupy the screen.

Hidden icons

Screenshot from Samsung India web site, with 400 % page zoom showing a huge chat button and a big banner.

In this example from Samsung India, the page is zoomed 400 %. The content is scaling properly. No horizontal scrollbar. However, the chat button occupies a big part of the browser window. It is not easy to access the buttons for search, cart or menu. And the quality of the button graphic is low. In addition, there is a huge ad for an app.

Improvements:

  • Add a minimize button for the chat button. Use the minimized version as the default.
  • Use vector graphics like SVG instead of raster graphics like PNG.
  • Show mobile ads only for mobile devices.

No clutter

Screenshot from Philips web site, in 400 % page zoom. The main menu is open and the interface is clean and tidy.

In this example from Philips, the entire viewport is available for main content. The main navigation is opened, and there is no clutter. The text and graphics are scaled well.

The viewport is set:

<meta name="viewport" content="width=device-width, initial-scale=1">

Learn more about responsive web design.



Avoid horizontal scrolling

Scrolling in two dimensions is confusing.

Fixed width

Screenshot from a Dell site with 400 % page zoom, showing a large cookie consent button and a header with horisontal scrolling.

In this example from Dell, we can only see a small part of the header. The site does not scale when zoomed. The result is a large horizontal scroll that makes it hard to navigate the page in two dimensions.

In addition, the cookie consent button is fixed, not possible to remove even though the consent is given. The logo and the icons are low resolution PNGs that does not scale well. Viewport is not set.

Improvements:

  • Make the site responsive.
  • Add a minimize button for the cookie button. Use the minimized version as the default.
  • Use vector graphics like SVG instead of raster graphics like PNG.

All content and functionality is available

No content should be hidden when zoomed.

Hidden tabs

Screenshot from Sony, showing a bluetooth speaker with bottom tabs that are hidden.

In this example from Sony, the tabs with product information is not accessible in a desktop browser with page zoom. Even if the user scrolls, the scrolling is happening outside of the browser window. All the specifications, features, reviews and support are inaccessible. The problem is that the entire section is "sticky":

<section class="sticky-nav">

.sticky-nav {
  position: fixed;
  z-index: 1035;
  top: 0;
}

This section is 159 pixels high in a mobile view. When zoomed four times, the fixed section occupies 636 pixels of the desktop view. With a browser height of 720 pixels, minus the top part of the browser, leaves not much room for the main content.

Fixed content is not necessarily inaccessible. The takeaway is that you should always test your site with page zoom in common browser sizes.

Screenshot of the Sony site with a mobile view, displaying the tabbed content correctly.

In a mobile view, the content beneath the tabs is accessible.

Screenshot from Huawei, showing a sticky top section, with enough space for the main content.

The sticky navigation from Huawei is not too high, so there are enough space for the main content.


Avoid text in images

Screenshot from Xiaomi, showing a pixelated image with parts of the text outside the viewport.

In this example from Xiaomi, the zoomed text is pixelated because it is part of the image. Parts of the text is also outside the browser window, so that the user has to scroll to read the entire product title. Displaying text with pure HTML and CSS has many benefits, in addition to be accessible: responsive, translatable and searchable.



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.