esprits top Esprit's Style

    -    エンジニアの足つぼ    -

インラインフレーム

〆 インラインフレームを設定します

<iframe src="~", witdh="???", height="???">>

<html>
<head>
<title> インラインフレーム </title>
</head>
<body>
  <iframe src="./html_sample/iframe.html"
    width="200" height="150">
  インラインフレームを利用します
  </iframe>
    ~
</body>
</html>

〆 インラインフレームにスクロールバーを設定します

<iframe scrolling="yes, no, auto">

<html>
<head>
<title> インラインフレーム </title>
</head>
<body>
  <iframe src="./html_sample/iframe.html"
    width="200" height="150" scrolling="yes">
  </iframe>
    ~
</body>
</html>

〆 インラインフレームの外枠の太さを設定します

<iframe frameborder="0, 1">
frameborder="0":外枠なし
frameborder="1":外枠あり(デフォルト)

<html>
<head>
<title> インラインフレーム </title>
</head>
<body>
  <iframe src="./html_sample/iframe.html"
    width="200" height="150" frameborder="0">
  </iframe>
    ~
</body>
</html>

〆 インラインフレームの外枠との間隔を設定します

<iframe marginwidth="??" marginheight="??">
  frameborder="0":外枠なし
  frameborder="1":外枠あり(デフォルト)

<html>
<head>
<title> インラインフレーム </title>
</head>
<body>
  <iframe src="./html_sample/iframe.html"
    width="200" height="150"
    marginwidth="15" marginheight="20">
  </iframe>
    ~
</body>
</html>
The link to this site is free.   /   Last Updated : 28.May.2012   
Copyright © ESPRITS STYLE. 2003-2007   /   ご意見、感想、苦情は、 こちらへ...
counter