图像从div中消失

时间:2018-04-19 20:19:42

标签: css bootstrap-4

我有一个<section>,里面有文字和图片。我给出了该部分的背景但不适用于图像。该图像具有引导类。我究竟做错了什么?谢谢。

<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>

1 个答案:

答案 0 :(得分:0)

你的课堂上需要overflow: hidden;

.about {
    background: red;
    overflow: hidden;
}