+ 2

Please tell me why image is not in center??

<html> <head> <title>image tag</title> </head> <body> <img src="img1.jpg" align="center"> </body> </html>

28th Mar 2019, 9:40 AM
Gaurav Rawat
Gaurav Rawat - avatar
8 Antwoorden
+ 8
Try this: <center> <img src="img1.jpg" /> </center> but center tag is not supported in HTML5 OR <div style="text-align: center" > <img src="img1.jpg" /> </div>
28th Mar 2019, 12:10 PM
VEDANG
VEDANG - avatar
+ 3
Satnam Explain, please, how to use it? 😕 ☺: __________________________________ In img align ="middle" does not work ☺ 1.way: <img align ="middel" src=" "/> ___________________________________ 2.way: <p align="middle"> <img src=" " alt="image"/> </p > ___________________________________ This will not work either. 😅 3. way // in css: img{ margin-left:auto; margin-right:auto; display:block; }
28th Mar 2019, 11:45 AM
Solo
Solo - avatar
+ 2
<html> <head> <title>image tag</title> </head> <body> <p align="center"> <img src="img1.jpg"> </p> </body> </html>
28th Mar 2019, 10:27 AM
Solo
Solo - avatar
+ 1
but why align center is not working??
28th Mar 2019, 10:04 AM
Gaurav Rawat
Gaurav Rawat - avatar
0
Use the following : <html> <head> <title>image tag</title> <style> img { display: block; margin-left: auto; margin-right: auto; } </style> </head> <body> <img src="img1.jpg"> </body> </html>
28th Mar 2019, 9:57 AM
Prokopios Poulimenos
Prokopios Poulimenos - avatar