horizontal-scrool

by Ishank Dubey

HTML

<div class="container">
<div class='tweek'>T</div>
</div>

CSS

.tweek{
  width:100%;
  height:200px;
  background-color:red;
  min-width:500px;
}

.container{
  width:100%;
  height:100%;
  background-color:black;
  overflow:auto;
}

body,html{
  margin:0px;
}