blob: 0629dfc73476fecd6576e768d5262c2562aed3d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
---
title: '::target-text'
slug: Web/CSS/::target-text
tags:
- '::target-text'
- CSS
- 擬似要素
- リファレンス
- セレクター
- ウェブ
browser-compat: css.selectors.target-text
translation_of: Web/CSS/::target-text
---
{{CSSRef}}{{SeeCompatTable}}
**`::target-text`** は [CSS](/ja/docs/Web/CSS) の[擬似要素](/ja/docs/Web/CSS/Pseudo-elements)で、ブラウザーが scroll-to-text フラグメントに対応している場合にスクロール先のテキストを表します。これによって、節のテキストを強調表示させることができます。
```css
::target-text {
background-color: pink;
}
```
## 構文
{{csssyntax}}
## 例
### scroll-to-text を強調表示
```css
::target-text {
background-color: rebeccapurple;
color: white;
}
```
この CSS を確認するには、 [scroll-to-text demo](https://mdn.github.io/css-examples/target-text/index.html#:~:text=From%20the%20foregoing%20remarks%20we%20may%20gather%20an%20idea%20of%20the%20importance) へのリンクを辿ってください。
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- [Text fragments](https://web.dev/text-fragments/)
|