div {
border: 1px solid gray;
display: block;
width: 155px;
height: 30px;
padding: 10px;
text-align: justify;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
transition: all 1s ease
}
div p {
margin: 0;
white-space: nowrap;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis
}
div:hover {
height: 90px
}
div:hover p {
white-space: normal;
overflow: none
}