The following css works and display the ellipsis (highlighted in red color) in case of Chrome browser with results as mentioned below:
Chrome:
position: relative;
display: -webkit-box;
max-height: 136px;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Result:
But in case of IE 11 it is not displaying the ellipsis :
Can anyone help me to fix this issue?