+ 1
Picture in the Center ?
How too in html
2 Answers
+ 1
If you want to put the image exactly at the center of webpage then you can do this using css
#your-img-id{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
- 1