Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

157
Views
Keep inline-block element on one side in place while scrolling, without position: fixed?

How would you get an element/div to stay in place (WITHOUT position: fixed;) while you scroll? (Actually, this page is a perfect example. The left side with the buttons do not move, while you can scroll this page where the content of this/my post is.)

Say, you have two divs, both are inline-block. The left div you want to stay in place. You only want to allow scrolling on the right div. (different tracks). position: fixed; doesn't really give me the result I'm looking for. Open to any solutions in CSS, vanilla JS, and/or jQuery. Here's some code that I've been trying:

HTML:

<div class="container">
    <div class="left">
        <!-- Content -->
    </div>
    <div class="right">
        <!-- Content -->
    </div>
</div>

CSS:

.left {
    display: inline-block;
    vertical-align: top;
    background-color: #F9F9F9;
    border-right: 2px solid $blueBorder;
    padding: 0.5%;
    overflow-x: hidden;
    overflow-y: hidden;
}
.right {
    display: inline-block;
    vertical-align: top;
    background-color: gray;
    padding: 0.5%;
}

jQuery:

$(window).scroll(function() {
    $('#left').css('top', $(this).scrollTop() + "px");
});
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

This can be done with pure css. As you pointed out, this page is an example. If you dig into it with your browser dev tools you will find something similar to this below.

body {
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.header {
  flex: 0 0 40px;
  border: 1px solid black;
}

.container {
  display: flex;
  flex: 1;
  overflow: hidden;
  border: 1px solid black;
}

.left {
  flex-basis: 300px;
  border: 1px solid black;
}

.right {
  flex: 1;
  border: 1px solid black;
  overflow: auto;
}
<body>
  <div class="header">
    Header
  </div>
  <div class="container">
    <div class="left">
      Left
    </div>
    <div class="right">
      Right
      <div style="height:200vh;"></div>
      With long content
    </div>
  </div>
</body>

about 4 years ago · Juan Pablo Isaza Report

0

Use sematic elements like section and aside tags in html instead of div so it will make more friendly.

Use w3 as reference

about 4 years ago · Juan Pablo Isaza Report

0

What's cool is you can just inspect this website using Right-Clicking and just look at StackOverflow's Code. They're going the Sticky Method, I've done a barebones version below

#contents{
  display: flex;
}

#left{
  background-color:yellow;
  position: relative !important;
  width:150px;
}
#sticky{
  position: sticky;
  background-color:red;
  top: 0;
}
#right{
  background-color:blue;
  position: relative !important;
  width:150px;
  height:650px;
}
<div id="contents">
  <div id="left">
    <div id="sticky">
      top<br>
      blah<br>
    </div>  
  </div>
  <div id="right">
    1<br>
    2<br>
    3<br>
    4<br>
    5<br>
    6<br>
    7<br>
    8<br>
    9<br>
    10<br>
    11<br>
    12<br>
    13<br>
    14<br>
    15<br>
    16<br>
  </div>
</div>

edit, grammar/spelling

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!