Advertisement
faizulclass

footer.php

Nov 7th, 2024 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <div class="footer mt-auto py-3 bg-light">
  2.     <div class="container text-center">
  3.         <h5>&copy; Kolej Komuniti Gopeng</h5>
  4.     </div>
  5. </div>
  6.  
  7. <style>
  8.     /* Footer specific styles */
  9.     .footer {
  10.         background-color: #f8f9fa;
  11.         border-top: 1px solid #eaeaea;
  12.         width: 100%;
  13.         position: relative;
  14.         bottom: 0;
  15.         padding: 10px 0;
  16.     }
  17.  
  18.     /* Body container to ensure footer is pushed down */
  19.     html, body {
  20.         height: 100%;
  21.     }
  22.  
  23.     body {
  24.         display: flex;
  25.         flex-direction: column;
  26.     }
  27.  
  28.     .container {
  29.         flex: 1; /* Ensures the container takes the available height */
  30.     }
  31. </style>
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement