Tell me how to press footer
to the bottom of the screen in Polymer? So that with a small amount of content "basement" always stayed down. In Polymer, everything is built with flex-blocks, but aligning the footer to the bottom doesn’t resist.
Maybe there is already some ready-made web component?
Code:
<body class="fullbleed layout vertical"> <paper-drawer-panel> <paper-header-panel drawer> <paper-toolbar fixed></paper-toolbar> </paper-header-panel> <paper-header-panel main> <paper-toolbar fixed></paper-toolbar> <main> <section class="main-section"> <paper-material> <p>Content</p> </paper-material> </section> </main> <footer> <p>Footer</p> </footer> </paper-header-panel> </paper-drawer-panel> </body>
What it looks like: