Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web/HTML/Element/frameset を更新 #13793

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 27 additions & 9 deletions files/ja/web/html/element/frameset/index.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,53 @@
---
title: <frameset>
slug: Web/HTML/Element/frameset
l10n:
sourceCommit: 8536cae9363a37725f9a5dcca4e064addbcc9506
---

{{HTMLSidebar}}{{Deprecated_header}}

**HTML の `<frameset>` 要素**は、 {{HTMLElement("frame")}} 要素を包含するために使用する HTML 要素です
**`<frameset>`** は [HTML](/ja/docs/Web/HTML) の要素で、{{HTMLElement("frame")}} 要素を保持するために使用します

> **メモ:** {{HTMLElement("iframe")}} の使用が支持されたことからフレームの使用は好ましくないため、一般的に現行のウェブサイトではこの要素を使用しません
> **メモ:** {{HTMLElement("iframe")}} の使用に置き換わったためフレームの使用は推奨されなくなったので、現在のウェブサイトではこの要素はほとんど使用しません

## 属性

他のすべての HTML 要素と同様に、この要素は[グローバル属性](/ja/docs/Web/HTML/Global_attributes)に対応しています。

- `cols`
- `cols` {{Deprecated_Inline}}
- : この属性は、フレームセット内の水平方向の領域の数と寸法を指定します。
- `rows`
- `rows` {{Deprecated_Inline}}
- : この属性は、フレームセット内の垂直方向の領域の数と寸法を指定します。

## 例

### フレームセット文書

フレームセット文書では、{{HTMLElement("body")}} 要素の代わりに {{HTMLElement("frameset")}} 要素があります。{{HTMLElement("frame")}} 要素は `<frameset>` の中に配置されます。

```html
<frameset cols="50%,50%">
<frame src="https://developer.mozilla.org/ja/docs/Web/HTML/Element/frameset" />
<frame src="https://developer.mozilla.org/ja/docs/Web/HTML/Element/frame" />
</frameset>
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Document metadata goes here -->
</head>
<frameset cols="50%, 50%">
<frame src="https://developer.mozilla.org/en/HTML/Element/iframe" />
<frame src="https://developer.mozilla.org/en/HTML/Element/frame" />
</frameset>
</html>
```

文書の {{HTMLElement("body")}} 内に別の HTML ページを埋め込みたい場合は、{{HTMLElement("iframe")}} 要素を使用してください。

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat("html.elements.frameset")}}
{{Compat}}

## 関連情報

Expand Down