---
title: tv-scrollable-bounds-inset
framework: tvml
role: collectionGroup
path: tvml/tv-scrollable-bounds-inset
---

# tv-scrollable-bounds-inset

Creates an unscrollable region of a specified size at the top and bottom of the stack template.

## Overview

Overview Use the tv-scrollable-bounds-inset style to create an unscrollable region of specified size from the top and bottom of the stackTemplate. When you use unscrollable regions, the content offset is no longer automatically adjusted to allow “peeking” — the partial view of elements directly above and below the focused element. Once focus is shifted from an unscrollable region to a scrollable region, the content offset of the template is adjusted to the specified tv-scrollable-bounds-inset value, so that the unscrollable region doesn’t appear on screen. note: By default, the entire template is scrollable if you don’t define the tv-scrollable-bounds-inset style. Here’s an example that sets the inset (unscrollable space) at the top, right, bottom, and left all to 100 points. <stackTemplate style="tv-scrollable-bounds-inset: 100.0;">     <banner>         …     </banner>     <collectionList>         <shelf>             <section>                 <lockup>…</lockup>             </section>         </shelf>     </collectionList> </stackTemplate> Here’s an example that sets the inset (unscrollable space) at the top to 50 points, and the inset at the bottom to 75 points. <stackTemplate style="tv-scrollable-bounds-inset: 50.0 0.0 75.0 0.0;">     <banner>         …     </banner>     <collectionList>         <shelf>             <section>                 <lockup>…</lockup>             </section>         </shelf>     </collectionList> </stackTemplate> Values for tv-scrollable-bounds-inset important: Currently, creating unscrollable regions at the left and right of the stackTemplate is not supported and will not have any effect. Elements That Use tv-scrollable-bounds-inset stackTemplate

## Topics

### Specifying Inset Location

- [tv-scrollable-bounds-inset-top](tvml/tv-scrollable-bounds-inset-top.md)
- [tv-scrollable-bounds-inset-bottom](tvml/tv-scrollable-bounds-inset-bottom.md)

## See Also

### Styles

- [Color Styles](tvml/color-styles.md)
- [Text Styles](tvml/text-styles.md)
- [Element Shaping](tvml/element-shaping.md)
- [Element Alignment and Spacing](tvml/element-alignment-and-spacing.md)
- [tv-placeholder](tvml/tv-placeholder.md)
- [tv-rating-style](tvml/tv-rating-style.md)
- [tv-transition](tvml/tv-transition.md)
- [tv-text-highlight-style](tvml/tv-text-highlight-style.md)
