.checkbox:checked ~ .paragraph {
height: 60px;
overflow: auto;
white-space: normal;
text-overflow: clip;
}
.paragraph {
height: 20px;
overflow: hidden;
white-space: nowrap;
transition: height .3s ease;
text-overflow: ellipsis;
}
transitions are not applied if height is set to 100% or auto, that's why I'm looking to apply the value in px or another unit of measure