* align=abamiddle 은 비표준이므로 사용하지 말것
1 2 3 4 |
<img src="" align="absmiddle"> (X) <img src="" style="vertical-align:middle"> (O) |
1 2 3 4 |
vertical-align:text-top; vertical-align:text-bottom; |
ex1)
1 2 3 |
<img src='./imsges/Standard.gif' border='0' style='vertical-align:text-bottom;'/> |
ex2)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<!DOCTYPE html> <html> <head> <style> img.top {vertical-align:text-top;} img.bottom {vertical-align:text-bottom;} </style> </head> <body> <p>An <img src="w3schools_logo.gif" alt="W3Schools" width="270" height="50" /> image with a default alignment.</p> <p>An <img class="top" src="w3schools_logo.gif" alt="W3Schools" width="270" height="50" /> image with a text-top alignment.</p> <p>An <img class="bottom" src="w3schools_logo.gif" alt="W3Schools" width="270" height="50" /> image with a text-bottom alignment.</p> </body> </html> |