Posts by Otávio Dioscânio • 9 points
2 posts
-
0
votes0
answers390
viewsQ: How to align the HR tag in CSS?
I’m doing so, but I don’t know if it’s the best way. Is there a "align: left;" for hr? Or will I have to use HTML? #regua-1 { border: 2px solid navy; width: 20%; position: relative; left: -530px; }…
-
0
votes2
answers66
viewsA: Problems with import and from/import command
Hello, welcome(a) to the website! In your code, you did not import the entire Math library, only Math.sqrt(). Soon, Math.Ceil() will not be available. To solve: from math import sqrt, ceil or import…