нужно что бы текст не перешагивал темную рамку , максимальное количество символом 300 , их хватает что бы обогнать рамку и текст уходит вперед и его не видно.. как сделать что бы текст переносился на новую строку , эта рамка была писана на ксс скину код
.wrapper {
display: flex;
width: 100vw;
height: 80vh;
align-items: flex-end;
justify-content: center;
}
.notification {
display: flex;
align-items: flex-end;
justify-content: space-around;
width: 1200px;
background: rgba(34, 34, 34, 0.94);
color: rgba(1, 1, 0,1);
border-radius: 0px;
height: 150px;
margin-bottom: 100px;
transition: all .3s;
font-size: 24px;
}
а вот код текста
.notification .text {
color: white;
position: absolute;
font-family: 'Cartonsix NC';
font-weight: 300;
font-height: 100;
font-size: 25px;
height: 350px;
display: block;
margin-bottom: 10px;
top: 350px;
left: 95px;
}