女人大荫蒂毛茸茸视频,免费大片黄在线观看18,男人把女人桶爽30分钟,久久亚洲色一区二区三区,久久精品道一区二区三区

0411-39943997
工作時間:周一至周日 8:30-22:00
技術(shù)文庫
Technical Library

HTML Iframe

標(biāo)簽: HTML知識  訪問: 96522019-07-16

HTML Iframe

iframe 用于在網(wǎng)頁內(nèi)顯示網(wǎng)頁。

添加 iframe 的語法

<iframe src="URL"></iframe>

URL 指向隔離頁面的位置。

Iframe - 設(shè)置高度和寬度

height 和 width 屬性用于規(guī)定 iframe 的高度和寬度。

屬性值的默認(rèn)單位是像素,但也可以用百分比來設(shè)定(比如 "80%")。

實例:

<!DOCTYPE html>
<html>
<body>

<iframe src="/example/html/demo_iframe.html" width="200" height="200"></iframe>

<p>某些老式的瀏覽器不支持內(nèi)聯(lián)框架。</p>
<p>如果不支持,則 iframe 是不可見的。</p>

</body>
</html>

image.png

Iframe - 刪除邊框

frameborder 屬性規(guī)定是否顯示 iframe 周圍的邊框。

設(shè)置屬性值為 "0" 就可以移除邊框:

實例:

<!DOCTYPE html>
<html>
<body>

<iframe src="/example/html/demo_iframe.html" frameborder="0"></iframe>

<p>某些老式的瀏覽器不支持內(nèi)聯(lián)框架。</p>
<p>如果不支持,則 iframe 是不可見的。</p>

</body>
</html>

image.png

使用 iframe 作為鏈接的目標(biāo)

iframe 可用作鏈接的目標(biāo)(target)。

鏈接的 target 屬性必須引用 iframe 的 name 屬性:

實例:

<!DOCTYPE html>
<html>
<body>

<iframe src="/example/html/demo_iframe.html" name="iframe_a"></iframe>

<p><a href="http://www.w3school.com.cn" target="iframe_a">W3School.com.cn</a></p>

<p><b>注釋:</b>由于鏈接的目標(biāo)匹配 iframe 的名稱,所以鏈接會在 iframe 中打開。</p>

</body>
</html>

image.png

image.png

本站關(guān)鍵詞:大連網(wǎng)站建設(shè)  |  大連網(wǎng)絡(luò)公司




Copyright? 2015 仟億科技,All rights reserved.