If you want scrollbars, simply surround the item you want to scroll with a <ScrollArea></ScrollArea>
component.
```rust
fn app() -> Html { html!{
The
The <ScrollArea></ScrollArea>
component is styled using yew-style-in-rs.In other words, you need to copy and place style.css from the build artifact.
Add vertical=true
if you want to use vertical scrollbars.
```rust
fn app() -> Html { html!{
Add horizontal=true
if you want to use horizontal scrollbars.
```rust
fn app() -> Html { html!{
Add vertical=true
and horizontal=true
if you want to use vertical and horizontal scrollbars.
```rust
fn app() -> Html { html!{
Add color={Color::rgba(128, 255, 0, 0.8)}
if you want to colorize scrollbars.
```rust
fn app() -> Html { html!{
Add attributes width, round, hidetime and smoothtime for styling scrollbars.
```rust
fn app() -> Html { html!{