ブラウザ毎に指定方法が異なるので注意が必要です。以下のサンプルコードをそのまま使うと良いでしょう。
See the Pen hide scrollbar by toshihide (@toshihide2000) on CodePen.
CSS
.textbox::-webkit-scrollbar { display: none;
}
CSS
.textbox { scrollbar-width: none;
}
CSS
.textbox { -ms-overflow-style: none;
}