0

I have a <section> and inside there is text and an image. I give a background to the section but don´t apply to the image. The image has bootstrap class. What am I doing wrong? Thank you.

<section class="about">
    <h2>Title here</h2>
    <p>paragraph</p>
    <img src="https://media.licdn.com/dms/image/C5603AQH92_pzwQHHGA/profile-displayphoto-shrink_200_200/0?e=1529355600&v=beta&t=8VBme0P0e-CIprWjJzI15iFhkJsSl9SbfdKmzABs3Pc" class="rounded float-right">
</section>
dzimiks
  • 329
  • 1
  • 3
  • 14
Ricardo Moreira
  • 947
  • 1
  • 9
  • 20

1 Answers1

0

You need overflow: hidden; in your about class.

.about {
    background: red;
    overflow: hidden;
}
dzimiks
  • 329
  • 1
  • 3
  • 14