Please enable JavaScript.
Coggle requires JavaScript to display documents.
Component_BS (* (danger, primary, success, warning, infor, dark, light,…
Component_BS
-
-
Navs
-
-
-
Fill All Nav
Use .nav-fill with .nav all horizontal space is occupied, but not every nav item has the same width
-
-
Buttons
-
When using button classes on <a> elements that are used to trigger in-page functionality (like collapsing content), rather than linking to new pages or sections within the current page, these links should be given a role="button" to appropriately convey their purpose to assistive technologies such as screen readers.
-
-
-
Button Group
-
Correct "role" :For button groups, this would be role="group", while toolbars should have a role="toolbar"
-
-
-
-
-
Alerts
-
-
-
Dismissing
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button></div>
-