+ 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>
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>
+ 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;
}
+ 2
<html>
<head>
<title>image tag</title>
</head>
<body>
<p align="center">
<img src="img1.jpg">
</p>
</body>
</html>
+ 1
but why align center is not working??
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>