JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
    <div class="fixed_column">A</div>
    <div class="fixed_column">B</div>
    <div class="fixed_column">C</div>
</div>

CSS

.wrapper {
    width: 505px;
    overflow-x: scroll;
    white-space:nowrap;    
}
.fixed_column {
    display: inline-block;
    height: 200px;
    width: 250px;
    background-color: green;
}