Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
development:css:bootstrap [2020/02/27 15:15]
kalenpw created
development:css:bootstrap [2021/06/29 15:00] (current)
kalenpw
Line 1: Line 1:
 ====== Bootstrap ====== ====== Bootstrap ======
 +  * [[.bootstrap : animated_hamburger_menu | Animated Hamburger Menu ]]
  
 ---- ----
-===== Sticky Footer ===== +===== CDN ===== 
-Ensure your content is all wrapped in a ''<div>'' with class ''.content-wrapper'' +<code html> 
-<code css+<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> 
-html, +</code> 
-body { +----
-    height: 100%; +
-}+
  
-body { 
-    display: flex; 
-    flex-direction: column; 
-} 
- 
-.content-wrapper { 
-    flex: 1 0 auto; 
-} 
- 
-footer { 
-    flex-shrink: 0; 
-} 
-</code>