JSFiddle - React, Tailwind, and code Playground
by maroKanatani
HTML
<div class="wrapper">
<div class="content">
<span>
雨ニモマケズ風ニモマケズ雪ニモ夏ノ暑サニモマケヌ
丈夫ナカラダヲモチ慾ハナク決シテ瞋ラズイツモシヅ
カニワラッテヰル一日ニ玄米四合ト味噌ト少シノ
野菜ヲタベアラユルコトヲジブンヲカンジョウニ入レズニヨク
</span>
<button class="right">copy</button>
</div>
</div>
CSS
.wrapper {
width: 300px;
overflow-x: scroll;
}
.content {
background-color: aqua;
width: 600px;
}
.right {
position: absolute;
left: 16.5rem;
}