Posts by luua • 1 point
3 posts
-
-2
votes6
answers304
viewsA: Align images to the center
Use this code in your css file: img{ margin: auto; }
-
-2
votes3
answers617
viewsA: Angular 8 - Problem with html accents
Check if your code has this basic structure: <!doctype html> <html lang="pt-br"> <head> <meta charset="utf-8"> </head> <body> </body> </html> It must…
-
0
votes2
answers356
viewsA: How do I remove the underline in the link?
You can just use the tag a{ text-decoration: none; }