blob: 2fc5b386b6206606357fa96c8d8739d192a5ce3a [file] [log] [blame]
<!--
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
@BLINK-ALLOW:focusable*
@BLINK-ALLOW:name*
-->
<!doctype html>
<style>
.carousel {
overflow: auto;
columns: 1;
height: 200px;
/* Request buttons for the carousel by setting a non-none content */
/* Name will come from fallback */
&::scroll-button(left) { content: '' ; }
/* Name will come from Css Alt */
&::scroll-button(right) { content: '>' / 'next'; }
/* Name will come from content */
&::scroll-button(up) { content: 'u'; }
&::scroll-button(down) { content: 'd'; }
& > div { height: 100%; }
}
</style>
<div class=carousel>
<div>One</div>
<div>Two</div>
<div>Three</div>
</div>