美文网首页
HTML Iframes

HTML Iframes

作者: 春暖花开奇奇乐乐 | 来源:发表于2018-11-16 15:46 被阅读9次

An iframe is used to display a web page within a web page. 

<iframe> Defines an inline frame

Iframe Syntax

1. Iframe - Set Height and Width

Use the height and width attributes to specify the size of the iframe.

The attribute values are specified in pixels by default, but they can also be in percent (like "80%").

Or you can use CSS to set the height and width of the iframe:


2. Iframe - Remove the Border

By default, an iframe has a border around it.

To remove the border, add the style attribute and use the CSS border property:

With CSS, you can also change the size, style and color of the iframe's border:


3. Iframe - Target for a Link

An iframe can be used as the target frame for a link.

The target attribute of the link must refer to the name attribute of the iframe:

相关文章

  • HTML Iframes

    An iframe is used to display a web page within a web page...

  • domReady和window.onload

    domReady是在dom树建立完之后就执行onload是在所有页面加载完之后执行,包括图片、iframes 1、...

  • 让iframe无阻塞异步加载方案研究之路

    这是一篇原创翻译文章。原文地址。 我们会经常使用iframes来加载第三方的内容、广告或者插件。使用iframe是...

  • 基础编程语言学习线路图

    HTML HTML教程HTML简介HTML编辑器HTML基础HTML元素HTML属性 HTML标题HTML段落HT...

  • HTML头部-10

    HTML 元素 HTML 元素 HTML 元素 HTML 元素 HTML 元素 HTML ...

  • html 大纲

    html 通用 html 简介 html 常用标签 html 属性 html 表格 html 字体 html 表单...

  • web 前端学习线路图

    一、HTML 教程 HTML教程HTML简介HTML编辑器HTML基础HTML元素HTML属性 HTML标题HTM...

  • 2018-06-04——HTML简介

    HTML 简介 HTML 标签 ·HTML 标记标签通常被称为 HTML 标签 (HTML tag)。 ·HTML...

  • HTML 基础

    HTML 标题 HTML 段落 HTML 链接 HTML 图像 HTML 文本格式化标签 HTML ...

  • html常用的基本标签

    HTML基础包括web工作原理,HTML概述,HTML基本标签和HTML高级标签。 〈html〉...〈/html...

网友评论

      本文标题:HTML Iframes

      本文链接:https://www.haomeiwen.com/subject/cnumfqtx.html