+ 2
How can we center align or change alignment of an image?
4 odpowiedzi
+ 6
<p align="center">
<img src=".......">
</p>
+ 12
You can use css for it contain image in div and use text-align:center;
here is a code click on it
https://code.sololearn.com/Wj3TRoJxyCFO/?ref=app
+ 7
Put it inside <div> tag
And then use css to adjust its position
Hope this help you
+ 3
See @celvin answer..
https://www.sololearn.com/Discuss/2435379/?ref=app
Also
.img{
poistion : center;
}
May also works ..try..