Image Alignment | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Image Alignment

How can I align my image in the center in an HTML document?The align attribute is not working

31st May 2019, 3:56 PM
M∆π∆$
M∆π∆$ - avatar
2 Answers
31st May 2019, 5:34 PM
Bug Slayer
+ 2
This may not work, but here's what I usually use: .image{ display: block; position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; }
31st May 2019, 4:02 PM
Faisal
Faisal - avatar