All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.TableWithoutCaptionCheck.html Maven / Gradle / Ivy

Go to download

Analyze HTML (also within PHP/Ruby/etc. templates) and JSP/JSF code.

The newest version!

In order to be accessible to visually impaired users, it is important that tables have a caption briefly describing its contents.

Noncompliant Code Example

<table>                                                         <!-- Non-Compliant -->
  ...
<table>

Compliant Solution

<table>                                                         <!-- Compliant -->
  <caption>New York City Marathon Results 2013</caption>
  ...
<table>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy