Testing an Image's align Property : Image Img : HTML JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » HTML » Image Img »

 

Testing an Image's align Property



<HTML>
<HEAD>
<TITLE>IMG align Property</TITLE>
<SCRIPT LANGUAGE="JavaScript">
function setAlignment(sel) {
    document.myIMG.align = sel.options[sel.selectedIndex].text
}
</SCRIPT>
</HEAD>
<BODY>
<H1>IMG align Property</H1>
<HR>
<FORM>
Choose the image alignment:
<SELECT onChange="setAlignment(this)">
    <OPTION>absbottom
    <OPTION>absmiddle
    <OPTION>baseline
    <OPTION SELECTED >bottom
    <OPTION >left
    <OPTION>middle
    <OPTION>right
    <OPTION>texttop
    <OPTION>top
</SELECT>
</FORM>
<HR>
<P>Text. Text. Text. Text. Text. Text. Text. Text. Text. 
Text. Text. Text. Text. Text. Text. Text. Text. Text. 
<IMG NAME="myIMG" SRC="http://www.navioo.com/style/logo.png" HEIGHT=90 WIDTH=120>
Text. Text. Text. Text. Text. Text. Text. Text. 
Text. Text. Text. Text. Text. Text. Text. Text. Text. Text. 
Text. Text. Text. Text. Text. Text. Text. </P>
</BODY>
</HTML>
           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo HTML
» Image Img