(注意)align属性を設定すると、以下のテキストは自動的に回り込む。(このsampleではalign="right"なので、テキストは左に回り込む)
![]()
<body>
<iframe name="ifrm" src="../aaa/start.htm" align="right" scrolling="yes" width="400" height="300">
</iframe>
<form name="form1">
次のボタンで右のインラインフレームを操作できる。<br>
<input type="button" name="urlbooks" value="参考書籍ページに変更" onclick="ifrm.location.href='../aaa/books.htm'">
<input type="button" name="urlstart" value="ごあいさつページに変更" onclick="ifrm.location.href='../aaa/start.htm'"><br>
<input type="button" name="bgc" value="背景色をグレーに" onclick="ifrm.document.bgColor ='silver'">
<input type="button" name="bgc_moto" value="背景色を元に戻す" onclick="ifrm.document.bgColor =''"><br>
<input type="button" name="fc" value="フォント色を緑に" onclick="ifrm.document.body.style.color ='green'">
<input type="button" name="fc_moto" value="フォント色を元に戻す" onclick="ifrm.document.body.style.color =''">
</form>
end(01/8/4)