Posts by Francisr • 76 points
2 posts
-
3
votes1
answer1188
viewsA: Remove background color from autocomplete input
This is a bit of a scam, but it should solve your problem :) /* Trocar para branco qualquer cor */ input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset; }…
-
3
votes5
answers1463
viewsA: Beginner in Python, Else and Elif
The first condition will always be one IF called at the beginning of the conditional structure, right after it you can add how many ELIF were necessary. I recommend looking at conditional structures…