+ 4
How to place an image in center?
I tried to use align="center" but it is not working i can't place my image into center it can be placed only at either left or right. please help me in solving this!!! https://code.sololearn.com/WDQhAC36EBDl/?ref=app
3 Respostas
+ 8
/*Add this code to your CSS*/
img{
display:block;
margin:auto;
}
+ 8
align is not working in <img> tag. As I remember align just works with block element , table.
+ 2
no align works with <img> but problem is that we can place an image at right or left with it...
And Thank you for help 😄