Posts by mugga • 51 points
3 posts
-
1
votes1
answer23
viewsA: Configuration php monetary mask
If the number to be converted always has the same amount of digits, just divide it by the number that represents R $ 1,00 (in your case 100.000.000) <?= number_format(…
-
0
votes1
answer639
viewsA: Use position Absolute to always leave element at the bottom but without overlapping another element
It is difficult to understand what you mean by "collide" and analyze your code only with HTML (without CSS and with Angular Material tags). In the future, enter your code in the question (Ctrl+M or…
-
1
votes1
answer609
viewsA: Table with class table-Striped does not change line color
bootstrap defines the odd line with code: .table-striped>tbody>tr:nth-of-type(odd) { background-color: #f9f9f9; } then to override this definition you must follow the same hierarchy in the…