Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/daggerok/html-footer

Minimal css to implement bottom footer functionality by using flexbox layout grid
https://github.com/daggerok/html-footer

css flexbox flexbox-css flexbox-grid flexbox-layout flexbox-samples flexboxcss flexboxgrid flexboxlayout footer

Last synced: 17 days ago
JSON representation

Minimal css to implement bottom footer functionality by using flexbox layout grid

Awesome Lists containing this project

README

        

# bottom footer css
By using flexbox

[Demo](https://daggerok.github.io/html-footer/)

_index.html_

```html


Minimal bottom footer css

.app {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.app-content {
flex: 1;
}



navbar is here


main site content is here

footer is here

```