diff options
| author | Patrick H. Lauke <[email protected]> | 2017-05-05 10:22:09 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-05-05 10:22:09 +0100 |
| commit | 2a4be9a0c900b635548a27aa8022dca9c3061cef (patch) | |
| tree | c9d368fa206d4784a3e7b04f9cb7e5afb2161dc8 /docs | |
| parent | c81be7792990a2da0d60bf61b876db85bba9a61a (diff) | |
| download | bootstrap-2a4be9a0c900b635548a27aa8022dca9c3061cef.tar.xz bootstrap-2a4be9a0c900b635548a27aa8022dca9c3061cef.zip | |
Add explicit role="main" to <main> elements (#22574)
For compatibility in IE10/IE11 which don't otherwise "know" this element's role/don't expose it to AT
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/examples/dashboard/index.html | 2 | ||||
| -rw-r--r-- | docs/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/dashboard/index.html b/docs/examples/dashboard/index.html index 5270f1705..923c5a594 100644 --- a/docs/examples/dashboard/index.html +++ b/docs/examples/dashboard/index.html @@ -91,7 +91,7 @@ </ul> </nav> - <main class="col-sm-9 offset-sm-3 col-md-10 offset-md-2 pt-3"> + <main class="col-sm-9 offset-sm-3 col-md-10 offset-md-2 pt-3" role="main"> <h1>Dashboard</h1> <section class="row text-center placeholders"> diff --git a/docs/index.html b/docs/index.html index 3b6c9206e..ff037113a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,7 +2,7 @@ layout: home --- -<main class="bd-masthead" id="content"> +<main class="bd-masthead" id="content" role="main"> <div class="container"> <span class="bd-booticon outline">B</span> <p class="lead">Bootstrap is the most popular HTML, CSS, and JS framework in the world for building responsive, mobile-first projects on the web.</p> |
