<aside>
  <p>Turnip greens yarrow ricebean rutabaga endive cauliflower sea lettuce kohlrabi amaranth water spinach avocado daikon napa cabbage asparagus winter purslane kale. Celery potato scallion desert raisin horseradish spinach carrot soko. Lotus root water spinach fennel kombu maize bamboo shoot green bean swiss chard seakale pumpkin onion chickpea gram corn pea. Brussels sprout coriander water chestnut gourd swiss chard wakame kohlrabi beetroot carrot watercress. Corn amaranth salsify bunya nuts nori azuki bean chickweed potato bell pepper artichoke.  </p>
</aside>

<div>
  <section></section>
  <section></section>
  <section></section>
  <section></section>
  <section></section>
  <section></section>
  <section></section>
  <section></section>
  <section></section>
</div>
aside {
  position: fixed;
  width: 25vw;
  height: 100vh;

  p {
    padding: 30px;
    line-height: 2;
  }
}

div {
  position: absolute;
  right: 0;
  width: 75vw;
}

section {
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  background-position-y: center;
  
  //Background image X AXIS is 50% plus half the width of it's sibling container
  background-position-x: calc(50% + 12.5vw);
  
  @for $i from 1 to 11 {
    &:nth-child(#{$i}) {
      background-image:url('https://picsum.photos/1500/1000?image=12' + $i);
    }
  }
}

View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.