CSS Overflow X

Overflow-x controls horizontal overflow.

Preview

Code

<style>
.box{
width:200px;
border:1px solid #2563eb;
overflow-x:auto;
white-space:nowrap;
}
</style>

<div class="box">
This is a long horizontal text that forces horizontal scrolling.
</div>

More CSS Overflow Examples (7)