@EmrePWSubmitted over 1 year ago
I think my rate buttons aren't exactly a complete circle? How can I do that?
I think my rate buttons aren't exactly a complete circle? How can I do that?
You could also put a height
and width
on the buttons (or one of those with an aspect-ratio: 1
) and usedisplay: grid
and place-content: center
to put the digit in the centre.
My questions are:
Hi Oleg,
to round the number you can use the toFixed
method.
0.3000000000000000004.toFixed(1)
Will round it to 0.3
I hope this helps.
Here's the MDN docs for toFixed:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed