blob: 8075ab23fed905caff8f47d01ef591fb16a7cc2c (
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
|
---
title: Element.scrollTopMax
slug: Web/API/Element/scrollTopMax
tags:
- API
- CSSOM View
- Element
- 標準外
- プロパティ
- 読み取り専用
- リファレンス
browser-compat: api.Element.scrollTopMax
translation_of: Web/API/Element/scrollTopMax
---
{{APIRef("DOM")}}{{Non-standard_header}}
**`Element.scrollTopMax`** は読み取り専用のプロパティで、この要素で可能な最大の上スクロールオフセットを表す数値を返します。
## 構文
```js
var pxl = elt.scrollTopMax;
```
## 仕様書
_このプロパティはどの仕様書にも含まれていません。_
## ブラウザーの互換性
{{Compat}}
## 関連情報
- 他の軸で同じ情報を提供する {{domxref("Element.scrollLeftMax")}}。
|