Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

171
Visualizações
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 Respostas
Responde à pergunta

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 Relatório

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda