Текст над изображением - это первая проблема, с которой вам нужно разобраться. Чтобы избежать этого, вы можете использовать shape-outside
css, чтобы обернуть текст так, чтобы текст появлялся рядом и под изображением, но не накладывался на него. Пример
Что касается определения высоты, я бы удалил абсолютное позиционирование с карты p и добавил бы высоту с помощью * 1006. * Авто предпочтительнее прокручивать, так как при переполнении в значение прокрутки будет отображаться полоса прокрутки, независимо от того, не переполняется ли элемент или нет. Вы можете использовать overflow-y, если хотите иметь вертикальную прокрутку на всех картах, хотя
Надеюсь, это поможет
Перенос текста / изображения:
.sq {
width: 80px;
height: 80px;
margin: 7px;
background: forestgreen;
color: #111;
border-radius: 10%;
text-align: center;
font-size: 15px;
float: left;
shape-outside: (80px 80px 80px 80px, 10px);
}
span {
padding-top: 10px;
display: inline-block;
}
<div class="sq"><span>Image</span></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software
</p>
<p> like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book.</p>
<p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer
took a galley of type and scrambled it to make a type specimen book. </p>