SCSS

by Matt Reynolds

HTML

<div class="outerContainer" style="background-color: yellow;">

  <div class="type-cec-solution" style="background-color: grey;">
  this is wierd
  </div>
</div>

CSS

.outerContainer {
  width: 300px;
  height: 200px;
  overflow-x: scroll;
  -ms-overflow-style: none;
}

.type-cec-solution {
  position: relative;
  width: 900px;
  height: 200px;
  background-size: cover;
  background-position: center;
  left: 0;
  z-index: 10;
}