Skip to main content

ScrollBox

Use s-scroll-box to create scrollable areas for content that exceeds container bounds.

<>
Default: 'auto'

Adjust the block size.

string

A unique identifier for the element.

<>
Default: 'auto'

Adjust the inline size.

<>
Default: 'none'

Adjust the maximum block size.

<>
Default: 'none'

Adjust the maximum inline size.

<>
Default: '0'

Adjust the minimum block size.

<>
Default: '0'

Adjust the minimum inline size.

<>
Default: 'none'

Adjust the padding of all edges.

1-to-4-value syntax is supported. Note that, contrary to the CSS, it uses flow-relative values and the order is:

  • 4 values: block-start inline-end block-end inline-start
  • 3 values: block-start inline block-end
  • 2 values: block inline

For example:

  • large means block-start, inline-end, block-end and inline-start paddings are large.
  • large none means block-start and block-end paddings are large, inline-start and inline-end paddings are none.
  • large none large means block-start padding is large, inline-end padding is none, block-end padding is large and inline-start padding is none.
  • large none large small means block-start padding is large, inline-end padding is none, block-end padding is large and inline-start padding is small.

A padding value of auto will use the default padding for the closest container that has had its usual padding removed.

<'' | >
Default: '' - meaning no override

Adjust the block-padding.

  • large none means block-start padding is large, block-end padding is none.

This overrides the block value of padding.

'' |
Default: '' - meaning no override

Adjust the block-end padding.

This overrides the block-end value of paddingBlock.

'' |
Default: '' - meaning no override

Adjust the block-start padding.

This overrides the block-start value of paddingBlock.

<'' | >
Default: '' - meaning no override

Adjust the inline padding.

  • large none means inline-start padding is large, inline-end padding is none.

This overrides the inline value of padding.

'' |
Default: '' - meaning no override

Adjust the inline-end padding.

This overrides the inline-end value of paddingInline.

'' |
Default: '' - meaning no override

Adjust the inline-start padding.

This overrides the inline-start value of paddingInline.

Was this section helpful?

Code

<s-scroll-box>
<s-choice-list multiple>
{data.map((item) => (
<s-choice value={item.value}>{item.label}</s-choice>
))}
</s-choice-list>
</s-scroll-box>

Preview