Differences

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

Link to this comparison view

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