Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

169
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 Denunciar

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda