What's the HTML for centering an image?
Moved by opensourcehost (Forum Moderator) from Web Designing: Please post in the correct forum next time, thanks :).
Printable View
What's the HTML for centering an image?
Moved by opensourcehost (Forum Moderator) from Web Designing: Please post in the correct forum next time, thanks :).
<center>imageurl</canter> ???
OrHTML Code:<p align="center">
<img src="img">
</p>
HTML Code:<center>
<img src="img">
</center>
Many thanks guys, +Rep to both of you!
HTML:
CSS:Code:<div id="image">
</div>
Something along those lines.Code:#image {
background-image: url(image.png);
background-position: center;
}
But he said html not CSS :P
just using an unnamed div is also an option:
Quote:
<div align="center">
<img src="imglink" alt="img description" />
</div>