透過アイフレーム



0   名前: やまだ : 2005/05/21 03:22
画像の上に透過アイフレームをのっけたのですが、
そのアイフレームの位置はどうやって変えるのですか?
教えて下さい。ちなみに
<TABLE style="border:solid 1px #ffffff">
<TBODY>
<TR>
<TD background="gaitoh.PNG" width="850" height="550">
<P align="center">
<IFRAME src="**.html" border="0px" style="border:none;"
frameborder="0" width="**" height="**" scrolling="AUTO" name="**" allowTransparency="true"></IFRAME></P></TD>
</TR></TBODY></TABLE>
これでやってますが、出来るでしょうか?

1   名前: 匿名希望 : 2005/05/21 03:22
IFRAMEタグにalign="***"つけた方が宜しいかと。
後はスタイルでマージン指定するなりされて下さいな。

2   名前: 通りすがり : 2005/05/21 03:22
>IFRAMEタグにalign="***"つけた方が宜しいかと。
なんの意味があるの?

3   名前: カヅサツ : 2005/05/21 03:22  [URL
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja" dir="ltr">
<head>
<meta http-equiv="content-style-type" content="text/css">
<title></title>
<style type="text/css">
body{
background-color: #000000;
}
.test{
border-width: 1px;
border-style: solid;
border-color: #FFFFFF;
width: 850px;
height: 550px;
background-image: url("gaitoh.PNG");
position: relative;
}
.test iframe{
position: absolute;

/* 以下の数値を変えて遊ぼう */
top: 10px;
left: 10px;
width: 400px;
height: 300px;
}
</style>
</head>
<body>
<p class="test"><iframe src="index2.html" name="test" frameborder="0"
><a href="index2.html">index2.html</a></iframe></p>
</body>
</html>

一覧へ戻る