Last active
February 16, 2022 19:56
-
-
Save xErik/27cccfeec33548ab1c921740f1f73aa8 to your computer and use it in GitHub Desktop.
Angular 8 | Bootstrap 4 | Footer at bottom of viewscreen OR after long page content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<app-header></app-header> | |
<section class="container"> | |
<router-outlet></router-outlet> | |
</section> | |
<app-footer class="mt-auto"></app-footer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" class="h-100"> | |
<head> | |
<!-- bla --> | |
</head> | |
<body class="h-100"> | |
<app-root class="d-flex flex-column h-100"></app-root> | |
<noscript | |
>Please enable JavaScript to continue using this application.</noscript | |
> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment