Contents |
The value used in the attribute is a proprietary one from Netscape or Internet Explorer.
<img> proprietary attribute value "absmiddle" See : http://www.w3.org/TR/html4/struct/objects.html#adef-align-IMG
![]() | <p><img src="hello.gif" alt="hello" align="absmiddle">hello</p> |
![]() | <p><img src="hello.gif" alt="hello" align="middle"> hello</p> (**) |
![]() | <p><img src="hello.gif" alt="hello" style="vertical-align: middle;"> hello</p> (**) |
![]() | <style type="text/css" media="all">
|
(**) Absmiddle and middle do not have exactly the same behavior. > "absmiddle" align the center of the image with the vertical center of the text next to it. > "middle" align the center of the image with the bottom of the text next to it.
Use standard HTML attribute values or CSS instead.