Всем добра!
Подскажите пожалуйста как ограничить кол-во знаков в аннотации к новости и исключить выезд элементов за пределы блока?
Сейчас проблема такая:
Если в аннотации текста мало, то всё смотрится сносно.
Но если я добавлю еще текста, то кнопка выйдет за пределы блока.
Как этого избежать?
<article class="news">
<section class="news-section">
<div class="news-block flex">
<div class="news-block__img">
<img src="https://w.forfun.com/fetch/ef/ef6db98dba1405127f9836afd6593736.jpeg" alt="">
</div>
<div class="news-block__info">
<h2 class="news-title">Завершился конкурс</h2>
<p class="annotation">Далеко-далеко за словесными горами в стране гласных и согласных живут рыбные тексты. Пор!</p>
<a href="" class="full-news">Читать далее</a>
</div>
</div>
</section>
</article>
.news-block {
outline: 1px solid red;
width: 30rem;
height: 15rem;
}
.news-block__info {
width: 15rem;
padding: 15px;
height: auto;
max-height: fit-content;
position: relative;
}
.news-title {
font-size: 20px;
}
.annotation {
font-size: 15px;
}
.full-news {
text-decoration: none;
font-size: 15px;
padding: 10px 15px;
background-color: red;
color: #fff;
border-radius: 5px;
position: absolute;
bottom: 15px;
}
.news-block__img {
outline: 1px solid green;
width: 15rem;
height: auto;
}
.news-block__img img {
clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%);
height: auto;
min-height: 100%;
max-width: 100%;
object-fit: cover;
}
/*вспомогательные*/
.flex {
display: flex;
}