PDA

Click to See Complete Forum and Search --> : CSS: image alignment [resolved]


tr333
Feb 25th, 2005, 08:56 PM
how do i make an image appear in the center of the page, like text-align:center does for text.

mendhak
Feb 25th, 2005, 11:04 PM
.cImg
{
text-align:center;
display:block;
}



<img src="mendhak.gif" class="cImg">

NoteMe
Feb 26th, 2005, 01:14 AM
Isn't it better to use



.cImg{
margin-left: auto;
margin-right: auto;
}



?

tr333
Feb 26th, 2005, 01:28 AM
thanks for the help..

works great.