Skip to content

Commit 21abb37

Browse files
committed
2025/06/06 時点の英語版に基づき更新
1 parent 393b804 commit 21abb37

File tree

1 file changed

+14
-6
lines changed
  • files/ja/web/svg/reference/element/g

1 file changed

+14
-6
lines changed

files/ja/web/svg/reference/element/g/index.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@
22
title: <g>
33
slug: Web/SVG/Reference/Element/g
44
l10n:
5-
sourceCommit: c2fd97474834e061404b992c8397d4ccc4439a71
5+
sourceCommit: ac806e34aba086be141689c64dc4dd73636fbd62
66
---
77

88
**`<g>`**[SVG](/ja/docs/Web/SVG) の要素で、他の SVG 要素をグループ化するために用いられるコンテナーです。
99

1010
`<g>` 要素に適用された座標変換は、その全ての子要素に対して実行されます。適用された属性は子要素に継承されます。加えて、多数のオブジェクトをグループ化しておくと後に {{SVGElement("use")}} 要素で参照することができます。
1111

12+
## 使用コンテキスト
13+
14+
{{svginfo}}
15+
16+
## 属性
17+
18+
この要素には、グローバル属性のみがあります。
19+
20+
## DOM インターフェイス
21+
22+
この要素は {{domxref("SVGGElement")}} インターフェイスを実装しています。
23+
1224
##
1325

1426
```css hidden
@@ -21,7 +33,7 @@ svg {
2133

2234
```html
2335
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
24-
<!-- Using g to inherit presentation attributes -->
36+
<!-- プレゼンテーション属性を継承するために g を使う -->
2537
<g fill="white" stroke="green" stroke-width="5">
2638
<circle cx="40" cy="40" r="25" />
2739
<circle cx="60" cy="60" r="25" />
@@ -31,10 +43,6 @@ svg {
3143

3244
{{EmbedLiveSample('Example', 100, '100%')}}
3345

34-
## 使用可能な場所
35-
36-
{{svginfo}}
37-
3846
## 仕様書
3947

4048
{{Specifications}}

0 commit comments

Comments
 (0)