diff --git a/docs/components/navs.md b/docs/components/navs.md
index b27ad3542d..a6c16b3f56 100644
--- a/docs/components/navs.md
+++ b/docs/components/navs.md
@@ -316,34 +316,32 @@ When showing a new tab, the events fire in the following order:
If no tab was already active, then the `hide.bs.tab` and `hidden.bs.tab` events will not be fired.
-
-
-
-
- Event Type |
- Description |
-
-
-
-
- show.bs.tab |
- This event fires on tab show, but before the new tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively. |
-
-
- shown.bs.tab |
- This event fires on tab show after a tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively. |
-
-
- hide.bs.tab |
- This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use event.target and event.relatedTarget to target the current active tab and the new soon-to-be-active tab, respectively. |
-
-
- hidden.bs.tab |
- This event fires after a new tab is shown (and thus the previous active tab is hidden). Use event.target and event.relatedTarget to target the previous active tab and the new active tab, respectively. |
-
-
-
-
+
+
+
+ Event Type |
+ Description |
+
+
+
+
+ show.bs.tab |
+ This event fires on tab show, but before the new tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively. |
+
+
+ shown.bs.tab |
+ This event fires on tab show after a tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively. |
+
+
+ hide.bs.tab |
+ This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use event.target and event.relatedTarget to target the current active tab and the new soon-to-be-active tab, respectively. |
+
+
+ hidden.bs.tab |
+ This event fires after a new tab is shown (and thus the previous active tab is hidden). Use event.target and event.relatedTarget to target the previous active tab and the new active tab, respectively. |
+
+
+
{% highlight js %}
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {