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

161
Vistas
SCSS how do I stop styling multiple <p> tags in a row when an <img> follows

Basically, I have a list of

tags from a WYSIWYG editor that have a margin-bottom of 20px. However, if the sibling of the

tag has an tag, I would like to remove that margin so that the tag can set the margin. How would I do this?

This is my styling

.wysiwyg {
p {
    margin-bottom: 20px;
}
}

Basic markup

<div class="wysiwyg">
    <p></p>
    <p></p>
    <p></p>
    // Styling must stop here so that there is no bottom margin from the first above <p> tag
    <img />
    <p></p>
    <p></p>
    <p></p>
</div>
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

You can use tilde ~, it will select all element after the current selector, and then reset the rule of all p after the img:

.wysiwyg {
  p {
    margin-bottom: 20px;
  }
  img ~ p {
    margin-bottom: 0;
  }
}

Here a demo

.wysiwyg p {
  margin-bottom: 20px;
  background-color: red;
}

.wysiwyg img ~ p {
  margin-bottom: 0;
  background-color: transparent;
}
<div class="wysiwyg">
    <p>1</p>
    <p>2</p>
    <p>3</p>
    <img />
    <p>4</p>
    <p>5</p>
    <p>6</p>
</div>

More information can be found here

about 4 years ago · Juan Pablo Isaza Denunciar

0

Just set a negative margin-top for img tags that are preceded by a p tag:

.wysiwyg {
    p {
        margin-bottom: 20px;
    }
    p + img {
        margin-top: -20px;
    }
}
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