Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

angular footer at bottom of page

css 
.cus-footer {
    width: 100% !important;
    position: absolute;
    color: white;
    background: #000;
    bottom: 0;
    padding: 10px;
}

app.component.html 
//place below code after <router-outlet></router-outlet> in app.component.html make sure you have added the css.
<footer class="cus-footer">Footer</footer>
 
PREVIOUS NEXT
Tagged: #angular #footer #bottom #page
ADD COMMENT
Topic
Name
8+6 =