====== HTML Tutorial - HTML Iframes ====== * description : HTML Tutorial - HTML Iframes * author : 오션 * email : shlim@repia.com * lastupdate : 2021-05-21 \\ =====The source of the article===== [[https://www.w3schools.com/html/html_iframe.asp|HTML Iframes]]\\ \\ %%HTML iframe%%은 웹 페이지 내부에 웹 페이지를 표시하는 데 사용됩니다.\\ =====HTML Iframe Syntax===== %%HTML \\ 또는 ''%%style%%'' 속성(attribute)을 추가하고 %%CSS%% ''%%height%%'' 및 ''%%width%%'' 속성(properties)을 사용할 수 있습니다.\\ ====Example====

HTML IFrames

You can also use the CSS height and width properties to specify the size of the iframe:

=====Iframe - Remove the Border===== 기본적으로 %%iframe%%에는 테두리(border)가 있습니다.\\ \\ 테두리를 제거하려면, ''%%style%%'' 속성(attribute)을 추가하고, %%CSS%% ''%%border%%'' 속성(property)을 사용합니다.\\ ====Example====

Remove the Iframe Border

To remove the default border of the iframe, use CSS:

\\ %%CSS%%를 사용하면 %%iframe%% 테두리의 크기, 스타일 및 색상을 변경할 수도 있습니다.\\ ====Example====

Custom Iframe Border

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

=====Iframe - Target for a Link===== %%iframe%%을 링크의 대상 프레임(target frame)으로 사용할 수 있습니다.\\ \\ 링크의 ''%%target%%'' 속성(attribute)은 %%iframe%%의 ''%%name%%'' 속성을 참조해야 합니다.\\ ====Example====

Iframe - Target for a Link

W3Schools.com

When the target attribute of a link matches the name of an iframe, the link will open in the iframe.

=====Chapter Summary===== * %%HTML%% ''%%