Skip to content

Commit

Permalink
2023/07/22 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 24, 2023
1 parent 5a773b0 commit dd4963a
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions files/ja/web/api/csspseudoelement/type/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: "CSSPseudoElement: type プロパティ"
short-title: type
slug: Web/API/CSSPseudoElement/type
l10n:
sourceCommit: d76defab4ca13261e9de81ae1df125345f847b0a
---

{{APIRef}}{{SeeCompatTable}}

**`type`** は {{DOMxRef('CSSPseudoElement')}} インターフェイスの読み取り専用プロパティで、擬似要素の型を [CSS セレクター](/ja/docs/Web/CSS/CSS_selectors#pseudo-elements)の形の文字列で表します。

##

以下の値のいずれかを格納する文字列です。

- {{CSSxRef('::before', '"::before"')}}
- {{CSSxRef('::after', '"::after"')}}
- {{CSSxRef('::marker', '"::marker"')}}

##

下記の例は、 `CSSPseudoElement.type` と {{DOMxRef('Element.pseudo()')}} の関係を示しています。

```js
const myElement = document.querySelector("q");
const mySelector = "::after";
const cssPseudoElement = myElement.pseudo(mySelector);
const typeOfPseudoElement = cssPseudoElement.type;

console.log(mySelector === typeOfPseudoElement); // true を出力
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{DOMxRef('Element.pseudo()')}}
- [標準的な擬似要素の索引](/ja/docs/Web/CSS/Pseudo-elements#標準的な擬似要素の索引)

0 comments on commit dd4963a

Please sign in to comment.