0
Image Alignment
How can I align my image in the center in an HTML document?The align attribute is not working
2 ответов
+ 2
This may not work, but here's what I usually use:
.image{
display: block;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
}