'angular material filter button always on the bottom right corner
Solution 1:[1]
Following CSS works fine.
.fab-button {
position: fixed;
bottom: 30px;
right: 50px;
}
If you're using angular material then the following can be added in the template HTML.
<button mat-fab color="primary" class="fab-button" aria-label="Add icon">
<mat-icon>add</mat-icon>
</button>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Selvam Raju |