aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-10-19 00:30:59 -0700
committerMark Otto <[email protected]>2016-10-19 00:30:59 -0700
commitf8e4a531cf89ffcc602863a367f35cfd307e28fb (patch)
tree3f58af30217fc13fd02ed50cfb820d77eab97369
parent4ee28feb14bc72de3008a422a6b66f95ef6ba766 (diff)
downloadbootstrap-f8e4a531cf89ffcc602863a367f35cfd307e28fb.tar.xz
bootstrap-f8e4a531cf89ffcc602863a367f35cfd307e28fb.zip
alt attributes
-rw-r--r--docs/components/navbar.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components/navbar.md b/docs/components/navbar.md
index ee028d2c6..bb819ff9e 100644
--- a/docs/components/navbar.md
+++ b/docs/components/navbar.md
@@ -84,7 +84,7 @@ Adding images to the `.navbar-brand` will likely always require custom styles or
<!-- Just an image -->
<nav class="navbar navbar-light bg-faded">
<a class="navbar-brand" href="#">
- <img src="{{ site.baseurl }}/assets/brand/bootstrap-solid.svg" width="30" height="30">
+ <img src="{{ site.baseurl }}/assets/brand/bootstrap-solid.svg" width="30" height="30" alt="">
</a>
</nav>
{% endexample %}
@@ -93,7 +93,7 @@ Adding images to the `.navbar-brand` will likely always require custom styles or
<!-- Image and text -->
<nav class="navbar navbar-light bg-faded">
<a class="navbar-brand" href="#">
- <img src="{{ site.baseurl }}/assets/brand/bootstrap-solid.svg" width="30" height="30" class="d-inline-block align-top">
+ <img src="{{ site.baseurl }}/assets/brand/bootstrap-solid.svg" width="30" height="30" class="d-inline-block align-top" alt="">
Bootstrap
</a>
</nav>